File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,8 +16,12 @@ dev_dependencies:
1616 path : ../benchpress
1717transformers :
1818- angular2 :
19- entry_points : web/src/hello_world/index_common.dart
20- reflection_entry_points : web/src/hello_world/index.dart
19+ entry_points :
20+ - web/src/hello_world/index_common.dart
21+ - web/src/todo/index.dart
22+ reflection_entry_points :
23+ - web/src/hello_world/index.dart
24+ - web/src/todo/index.dart
2125- $dart2js :
2226 minify : false
2327 commandLineOptions :
Original file line number Diff line number Diff line change 1+ import { Injectable } from 'angular2/di' ;
12import { ListWrapper } from 'angular2/src/facade/collection' ;
23
34// base model for RecordStore
@@ -19,6 +20,7 @@ export class Todo extends KeyModel {
1920 }
2021}
2122
23+ @Injectable ( )
2224export class TodoFactory {
2325 _uid : number ;
2426
@@ -37,6 +39,7 @@ export class TodoFactory {
3739}
3840
3941// Store manages any generic item that inherits from KeyModel
42+ @Injectable ( )
4043export class Store {
4144 list : List < KeyModel > ;
4245
You can’t perform that action at this time.
0 commit comments