Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(293)

Side by Side Diff: third_party/pkg/angular/lib/core/module.dart

Issue 124053002: Adding Angular and dependent packages for testing (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 library angular.core;
2
3 import 'dart:async' as async;
4 import 'dart:collection';
5 import 'dart:convert' show JSON;
6 import 'dart:mirrors';
7
8 import 'package:di/di.dart';
9 import 'package:perf_api/perf_api.dart';
10
11 import 'package:angular/core/parser/parser_library.dart';
12 import 'package:angular/utils.dart';
13
14 import 'service.dart';
15 export 'service.dart';
16
17 part "cache.dart";
18 part "directive.dart";
19 part "exception_handler.dart";
20 part "filter.dart";
21 part "interpolate.dart";
22 part "registry.dart";
23 part "scope.dart";
24 part "zone.dart";
25
26
27 class NgCoreModule extends Module {
28 NgCoreModule() {
29 type(ScopeDigestTTL);
30
31 type(MetadataExtractor);
32 type(FieldMetadataExtractor);
33 type(Cache);
34 type(DirectiveMap);
35 type(ExceptionHandler);
36 type(FilterMap);
37 type(Interpolate);
38 type(Scope);
39 type(NgZone);
40
41 type(Parser, implementedBy: DynamicParser);
42 type(DynamicParser);
43 type(Lexer);
44 type(ParserBackend);
45 type(GetterSetter);
46 }
47 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698