We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7f06c5 commit fa1ec48Copy full SHA for fa1ec48
1 file changed
modules/examples/src/todo/index.js
@@ -1,5 +1,7 @@
1
import {bootstrap, Component, View, For} from 'angular2/angular2';
2
import {Store, Todo, TodoFactory} from './services/TodoStore';
3
+import {reflector} from 'angular2/src/reflection/reflection';
4
+import {ReflectionCapabilities} from 'angular2/src/reflection/reflection_capabilities';
5
6
@Component({
7
selector: 'todo-app',
@@ -71,5 +73,6 @@ class TodoApp {
71
73
}
72
74
75
export function main() {
76
+ reflector.reflectionCapabilities = new ReflectionCapabilities(); // for the Dart version
77
bootstrap(TodoApp);
78
0 commit comments