Update summary: - Removes the need for resolution, gaining transform speed at the cost of some precision and ability to detect errors - Generates type registrations in the package alongside their declarations - Ensures that line numbers do not change in transformed user code
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);
|
|
}
|