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

Unified Diff: third_party/pkg/angular/lib/directive/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, 12 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
new file mode 100644
index 0000000000000000000000000000000000000000..eb85f15ecb60cb509406cc3bcd8375537a63dd20
--- /dev/null
+++ b/third_party/pkg/angular/lib/directive/module.dart
@@ -0,0 +1,72 @@
+library angular.directive;
+
+import 'package:di/di.dart';
+import 'dart:html' as dom;
+import 'dart:async' as async;
+import 'package:angular/core/module.dart';
+import 'package:angular/core/parser/parser_library.dart';
+import 'package:angular/core_dom/module.dart';
+import 'package:angular/utils.dart';
+
+part 'ng_a.dart';
+part 'ng_bind.dart';
+part 'ng_bind_html.dart';
+part 'ng_bind_template.dart';
+part 'ng_class.dart';
+part 'ng_events.dart';
+part 'ng_cloak.dart';
+part 'ng_if.dart';
+part 'ng_include.dart';
+part 'ng_model.dart';
+part 'ng_repeat.dart';
+part 'ng_template.dart';
+part 'ng_show_hide.dart';
+part 'ng_src_boolean.dart';
+part 'ng_style.dart';
+part 'ng_switch.dart';
+part 'ng_non_bindable.dart';
+part 'input_select.dart';
+part 'ng_form.dart';
+
+class NgDirectiveModule extends Module {
+ NgDirectiveModule() {
+ value(NgADirective, null);
+ value(NgBindDirective, null);
+ value(NgBindTemplateDirective, null);
+ value(NgBindHtmlDirective, null);
+ value(NgClassDirective, null);
+ value(NgClassOddDirective, null);
+ value(NgClassEvenDirective, null);
+ value(NgCloakDirective, null);
+ value(NgHideDirective, null);
+ value(NgIfDirective, null);
+ value(NgUnlessDirective, null);
+ value(NgIncludeDirective, null);
+ value(NgRepeatDirective, null);
+ value(NgShalowRepeatDirective, null);
+ value(NgShowDirective, null);
+ value(InputEmailDirective, null);
+ value(InputNumberDirective, null);
+ value(InputRadioDirective, null);
+ value(InputTextDirective, null);
+ value(InputPasswordDirective, null);
+ value(InputUrlDirective, null);
+ value(InputCheckboxDirective, null);
+ value(TextAreaDirective, null);
+ value(InputSelectDirective, null);
+ value(OptionValueDirective, null);
+ value(NgModel, null);
+ value(NgSwitchDirective, null);
+ value(NgSwitchWhenDirective, null);
+ value(NgSwitchDefaultDirective, null);
+
+ value(NgBooleanAttributeDirective, null);
+ value(NgSourceDirective, null);
+
+ value(NgEventDirective, null);
+ value(NgStyleDirective, null);
+ value(NgNonBindableDirective, null);
+ value(NgTemplateDirective, null);
+ value(NgForm, null);
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698