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

Unified Diff: third_party/pkg/angular/lib/directive/module.dart

Issue 180873006: Update the Angular/DI tests to latest from github. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Review feedback Created 6 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: third_party/pkg/angular/lib/directive/module.dart
diff --git a/third_party/pkg/angular/lib/directive/module.dart b/third_party/pkg/angular/lib/directive/module.dart
index c2f2aa1a6aab12f55b12a988c0471743889cbfa3..6bd55d707dc8a1844baf4888dcdb9504c32bedae 100644
--- a/third_party/pkg/angular/lib/directive/module.dart
+++ b/third_party/pkg/angular/lib/directive/module.dart
@@ -2,12 +2,13 @@ library angular.directive;
import 'package:di/di.dart';
import 'dart:html' as dom;
-import 'dart:async' as async;
import 'package:intl/intl.dart';
import 'package:angular/core/module.dart';
import 'package:angular/core/parser/parser.dart';
import 'package:angular/core_dom/module.dart';
import 'package:angular/utils.dart';
+import 'package:angular/change_detection/watch_group.dart';
+import 'package:angular/change_detection/change_detection.dart';
part 'ng_a.dart';
part 'ng_bind.dart';
@@ -38,6 +39,7 @@ class NgDirectiveModule extends Module {
value(NgBindDirective, null);
value(NgBindTemplateDirective, null);
value(NgBindHtmlDirective, null);
+ value(dom.NodeValidator, new dom.NodeValidatorBuilder.common());
value(NgClassDirective, null);
value(NgClassOddDirective, null);
value(NgClassEvenDirective, null);
@@ -48,15 +50,19 @@ class NgDirectiveModule extends Module {
value(NgIncludeDirective, null);
value(NgPluralizeDirective, null);
value(NgRepeatDirective, null);
- value(NgShalowRepeatDirective, null);
+ value(NgShallowRepeatDirective, null);
value(NgShowDirective, null);
value(InputTextLikeDirective, null);
+ value(InputNumberLikeDirective, null);
value(InputRadioDirective, null);
value(InputCheckboxDirective, null);
value(InputSelectDirective, null);
value(OptionValueDirective, null);
value(ContentEditableDirective, null);
value(NgModel, null);
+ value(NgValue, new NgValue(null));
+ value(NgTrueValue, new NgTrueValue(null));
+ value(NgFalseValue, new NgFalseValue(null));
value(NgSwitchDirective, null);
value(NgSwitchWhenDirective, null);
value(NgSwitchDefaultDirective, null);
@@ -69,6 +75,7 @@ class NgDirectiveModule extends Module {
value(NgStyleDirective, null);
value(NgNonBindableDirective, null);
value(NgTemplateDirective, null);
+ value(NgControl, new NgNullControl());
value(NgForm, new NgNullForm());
value(NgModelRequiredValidator, null);
« no previous file with comments | « third_party/pkg/angular/lib/directive/input_select.dart ('k') | third_party/pkg/angular/lib/directive/ng_a.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698