| OLD | NEW |
| (Empty) | |
| 1 /** |
| 2 * Angular is a framework for building single page web applications. |
| 3 * |
| 4 * Further reading: |
| 5 * |
| 6 * - AngularJS [Overview](http://www.angularjs.org) |
| 7 * - [Tutorial](https://github.com/angular/angular.dart.tutorial/wiki) |
| 8 * - [Mailing List](http://groups.google.com/d/forum/angular-dart?hl=en) |
| 9 * |
| 10 */ |
| 11 library angular; |
| 12 |
| 13 import 'dart:html' as dom; |
| 14 import 'dart:js'; |
| 15 import 'package:di/di.dart'; |
| 16 import 'package:di/dynamic_injector.dart'; |
| 17 |
| 18 import 'package:angular/core/module.dart'; |
| 19 import 'package:angular/core_dom/module.dart'; |
| 20 import 'package:angular/directive/module.dart'; |
| 21 import 'package:angular/filter/module.dart'; |
| 22 import 'package:angular/perf/module.dart'; |
| 23 import 'package:angular/routing/module.dart'; |
| 24 import 'package:js/js.dart' as js; |
| 25 |
| 26 export 'package:di/di.dart'; |
| 27 export 'package:angular/core/module.dart'; |
| 28 export 'package:angular/core_dom/module.dart'; |
| 29 export 'package:angular/core/parser/parser_library.dart'; |
| 30 export 'package:angular/directive/module.dart'; |
| 31 export 'package:angular/filter/module.dart'; |
| 32 export 'package:angular/routing/module.dart'; |
| 33 |
| 34 part 'bootstrap.dart'; |
| 35 part 'introspection.dart'; |
| OLD | NEW |