feat(dart/transform): Add a parser for .ng_deps.dart files and use.

Use the parser in `BindGenerator`
This checkin also removes types from `registerSetters` calls since they
can cause runtime failures (see #886). We will resolve this by
generating change detector classes in the future.
This commit is contained in:
Tim Blasi
2015-03-12 14:04:41 -07:00
parent 92b22d24d0
commit 4b12c19560
7 changed files with 102 additions and 89 deletions

View File

@ -23,5 +23,5 @@ void setupReflection(reflector) {
selector: '[tool-tip]', bind: const {'text': 'tool-tip'})
]
})
..registerSetters({'text': (ToolTip o, String value) => o.text = value});
..registerSetters({'text': (o, String v) => o.text = v});
}