Jasmine deBoer
Jasmine deBoer
Writing my program, I ran into the error: ``` 2016/03/08 08:35:36 can not marshal int into timestamp ``` While accurate, I wasn't able to figure the accepted timestamp types until...
e.g. Adding a test to constants_test.dart: ```dart @TypeWrapper(String) class Example {} class TypeWrapper { final Type t; const TypeWrapper(this.t); } test('should not crash when resolving types', () { expect(typeWrapperConstant.read('t').revive(), isNull...
Looking at the logs, they failed to build with a stack overflow. Repo: 1. Go to https://pub.dartlang.org/packages/angular 2. Follow the link to documentation
I have a decorator that modifies it state if it has a View in its ViewPort. e.g. ``` bool get hasViews => _viewPort.views.isNotEmpty; ``` Since Views are inserted during the...
We want to discourage calling Scope.watch() from within a directive. There are a few places that we call Scope.watch() from Angular core directives: - ngClass - ngModel In both cases,...
e.g. a Component with the selector 'foo[bar]' will cause the Shadow DOM shim to fail. This only effects browsers that need the shim.
Or eliminate them entirely. Once #1088 has landed, we should fix up all the calls to scope.watch (e.g in directives). There are probably cases where we do not need the...
The script should: 1. Strip out the build badge so that it does not show up here: https://pub.dartlang.org/packages/angular 2. Strip out tho `` tags from CHANGELOG.md so that they don't...
Add e2e tests for the tutorial to our tests
.. which is used in application tests to mock out RouteProvider depedencies. @yjbanov