feat(dart/transform): Add simple ParseTemplates step
Adds a step that parses `inline` Template values to generate getters and setters.
This commit is contained in:
@ -7,6 +7,7 @@ import 'directive_linker/transformer.dart';
|
||||
import 'directive_processor/transformer.dart';
|
||||
import 'bind_generator/transformer.dart';
|
||||
import 'reflection_remover/transformer.dart';
|
||||
import 'template_parser/transformer.dart';
|
||||
import 'common/formatter.dart' as formatter;
|
||||
import 'common/options.dart';
|
||||
|
||||
@ -18,7 +19,8 @@ class AngularTransformerGroup extends TransformerGroup {
|
||||
AngularTransformerGroup(TransformerOptions options) : super([
|
||||
[new DirectiveProcessor(options)],
|
||||
[new DirectiveLinker(options)],
|
||||
[new BindGenerator(options), new ReflectionRemover(options)]
|
||||
[new BindGenerator(options), new ReflectionRemover(options)],
|
||||
[new TemplateParser(options)]
|
||||
]) {
|
||||
formatter.init(new DartFormatter());
|
||||
}
|
||||
|
Reference in New Issue
Block a user