You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BREAKING_CHANGE:
When asked for DirectiveInjector, ComponentDirectiveInjector injects
parent. When asked for ComponentDirectiveInjector it injects self.
Before:
MyComponent(DirectiveInjector di) { }
After:
MyComponent(ComponentDirectiveInjector cdi, DirectiveInjector di) { }
where before di = after cdi, before di.parent = after di.
Closesdart-archive#1351
0 commit comments