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 |
deleted file mode 100644 |
index 6bd55d707dc8a1844baf4888dcdb9504c32bedae..0000000000000000000000000000000000000000 |
--- a/third_party/pkg/angular/lib/directive/module.dart |
+++ /dev/null |
@@ -1,89 +0,0 @@ |
-library angular.directive; |
- |
-import 'package:di/di.dart'; |
-import 'dart:html' as dom; |
-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'; |
-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_control.dart'; |
-part 'ng_model.dart'; |
-part 'ng_pluralize.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'; |
-part 'ng_model_validators.dart'; |
- |
-class NgDirectiveModule extends Module { |
- NgDirectiveModule() { |
- value(NgADirective, null); |
- 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); |
- value(NgCloakDirective, null); |
- value(NgHideDirective, null); |
- value(NgIfDirective, null); |
- value(NgUnlessDirective, null); |
- value(NgIncludeDirective, null); |
- value(NgPluralizeDirective, null); |
- value(NgRepeatDirective, 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); |
- |
- value(NgBooleanAttributeDirective, null); |
- value(NgSourceDirective, null); |
- value(NgAttributeDirective, null); |
- |
- value(NgEventDirective, null); |
- value(NgStyleDirective, null); |
- value(NgNonBindableDirective, null); |
- value(NgTemplateDirective, null); |
- value(NgControl, new NgNullControl()); |
- value(NgForm, new NgNullForm()); |
- |
- value(NgModelRequiredValidator, null); |
- value(NgModelUrlValidator, null); |
- value(NgModelEmailValidator, null); |
- value(NgModelNumberValidator, null); |
- value(NgModelPatternValidator, null); |
- value(NgModelMinLengthValidator, null); |
- value(NgModelMaxLengthValidator, null); |
- } |
-} |