Tobias Bosch
Tobias Bosch
Also need to check for static fields to make the above check happy
In `unittest_backend.dart`, something like this could work: ``` toDataUsingReflection(obj) { ... return clazz.declarations.values.fold({}, (map, decl) { if (decl is VariableMirror && !decl.isPrivate && !decl.isStatic) { ... ```
Right now Angular is doing this so a user can mix and match components with different ViewEncapsulations. If we didn't do this, using a component with ViewEncapsulation.None/ Emulated inside of...
Hi, did this work with v2.x?
In this case, you actually should use `@ContentChildren`. We have to document this better, and its also broken, see https://github.com/angular/angular/issues/15117...