Generate calls to Reflector#registerSetters from the information in provided `Directive#bind` values. This is only an initial attempt - it covers only the most basic values of `bind`. Closes #780
11 lines
271 B
Dart
11 lines
271 B
Dart
library web_foo;
|
|
|
|
import 'package:angular2/src/core/application.dart';
|
|
import 'package:angular2/src/reflection/reflection_capabilities.dart';
|
|
import 'bar.dart';
|
|
|
|
void main() {
|
|
reflector.reflectionCapabilities = new ReflectionCapabilities();
|
|
bootstrap(MyComponent);
|
|
}
|