| Index: third_party/pkg/angular/lib/core/module.dart
|
| diff --git a/third_party/pkg/angular/lib/core/module.dart b/third_party/pkg/angular/lib/core/module.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..4f69bd3c6a43741dc1d3f17beb66303d1ef2b0b0
|
| --- /dev/null
|
| +++ b/third_party/pkg/angular/lib/core/module.dart
|
| @@ -0,0 +1,47 @@
|
| +library angular.core;
|
| +
|
| +import 'dart:async' as async;
|
| +import 'dart:collection';
|
| +import 'dart:convert' show JSON;
|
| +import 'dart:mirrors';
|
| +
|
| +import 'package:di/di.dart';
|
| +import 'package:perf_api/perf_api.dart';
|
| +
|
| +import 'package:angular/core/parser/parser_library.dart';
|
| +import 'package:angular/utils.dart';
|
| +
|
| +import 'service.dart';
|
| +export 'service.dart';
|
| +
|
| +part "cache.dart";
|
| +part "directive.dart";
|
| +part "exception_handler.dart";
|
| +part "filter.dart";
|
| +part "interpolate.dart";
|
| +part "registry.dart";
|
| +part "scope.dart";
|
| +part "zone.dart";
|
| +
|
| +
|
| +class NgCoreModule extends Module {
|
| + NgCoreModule() {
|
| + type(ScopeDigestTTL);
|
| +
|
| + type(MetadataExtractor);
|
| + type(FieldMetadataExtractor);
|
| + type(Cache);
|
| + type(DirectiveMap);
|
| + type(ExceptionHandler);
|
| + type(FilterMap);
|
| + type(Interpolate);
|
| + type(Scope);
|
| + type(NgZone);
|
| +
|
| + type(Parser, implementedBy: DynamicParser);
|
| + type(DynamicParser);
|
| + type(Lexer);
|
| + type(ParserBackend);
|
| + type(GetterSetter);
|
| + }
|
| +}
|
|
|