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
{{ message }}
This repository has been archived by the owner on Feb 22, 2018. It is now read-only.
When asked for DirectiveInjector, ComponentDirectiveInjector injects
parent and injects self, when asked for ComponentDirectiveInjector
explicitly.
Closesdart-archive#1351
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
rkirov
added a commit
to rkirov/angular.dart
that referenced
this issue
Aug 25, 2014
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
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.
Closes#1351
and return this only when asked for ComponentDirectiveInjector.
The text was updated successfully, but these errors were encountered: