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
9 lines
167 B
Dart
9 lines
167 B
Dart
library foo;
|
|
|
|
import 'package:angular2/src/core/annotations/annotations.dart';
|
|
|
|
@Component(selector: '[salad]')
|
|
class DependencyComponent {
|
|
DependencyComponent();
|
|
}
|