| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 /// Custom HTML tags, data binding, and templates for building | 5 /// Custom HTML tags, data binding, and templates for building |
| 6 /// structured, encapsulated, client-side web apps. | 6 /// structured, encapsulated, client-side web apps. |
| 7 /// | 7 /// |
| 8 /// Polymer.dart, the next evolution of Web UI, | 8 /// Polymer.dart, the next evolution of Web UI, |
| 9 /// is an in-progress Dart port of the | 9 /// is an in-progress Dart port of the |
| 10 /// [Polymer project](http://www.polymer-project.org/). | 10 /// [Polymer project](http://www.polymer-project.org/). |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 | 71 |
| 72 import 'package:logging/logging.dart' show Logger, Level; | 72 import 'package:logging/logging.dart' show Logger, Level; |
| 73 import 'package:observe/observe.dart'; | 73 import 'package:observe/observe.dart'; |
| 74 import 'package:observe/src/dirty_check.dart' show dirtyCheckZone; | 74 import 'package:observe/src/dirty_check.dart' show dirtyCheckZone; |
| 75 import 'package:path/path.dart' as path; | 75 import 'package:path/path.dart' as path; |
| 76 import 'package:polymer_expressions/polymer_expressions.dart' | 76 import 'package:polymer_expressions/polymer_expressions.dart' |
| 77 show PolymerExpressions; | 77 show PolymerExpressions; |
| 78 import 'package:smoke/smoke.dart' as smoke; | 78 import 'package:smoke/smoke.dart' as smoke; |
| 79 import 'package:smoke/mirrors.dart' as smoke; | 79 import 'package:smoke/mirrors.dart' as smoke; |
| 80 import 'package:template_binding/template_binding.dart'; | 80 import 'package:template_binding/template_binding.dart'; |
| 81 import 'package:web_components/polyfill.dart' show customElementsReady; | |
| 82 | 81 |
| 83 import 'deserialize.dart' as deserialize; | 82 import 'deserialize.dart' as deserialize; |
| 84 import 'src/mirror_loader.dart' as loader; // ** see important note above | 83 import 'src/mirror_loader.dart' as loader; // ** see important note above |
| 85 | 84 |
| 86 export 'package:observe/observe.dart'; | 85 export 'package:observe/observe.dart'; |
| 87 export 'package:observe/html.dart'; | 86 export 'package:observe/html.dart'; |
| 88 | 87 |
| 89 part 'src/declaration.dart'; | 88 part 'src/declaration.dart'; |
| 90 part 'src/instance.dart'; | 89 part 'src/instance.dart'; |
| 91 part 'src/job.dart'; | 90 part 'src/job.dart'; |
| 92 part 'src/loader.dart'; | 91 part 'src/loader.dart'; |
| OLD | NEW |