| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 // bots. | 62 // bots. |
| 63 @MirrorsUsed(metaTargets: | 63 @MirrorsUsed(metaTargets: |
| 64 const [Reflectable, ObservableProperty, PublishedProperty, CustomTag, | 64 const [Reflectable, ObservableProperty, PublishedProperty, CustomTag, |
| 65 ObserveProperty], | 65 ObserveProperty], |
| 66 targets: const [PublishedProperty, ObserveProperty], | 66 targets: const [PublishedProperty, ObserveProperty], |
| 67 override: const ['smoke.mirrors']) | 67 override: const ['smoke.mirrors']) |
| 68 import 'dart:mirrors' show MirrorsUsed; // ** see important note above | 68 import 'dart:mirrors' show MirrorsUsed; // ** see important note above |
| 69 | 69 |
| 70 import 'package:logging/logging.dart' show Logger, Level; | 70 import 'package:logging/logging.dart' show Logger, Level; |
| 71 import 'package:observe/observe.dart'; | 71 import 'package:observe/observe.dart'; |
| 72 import 'package:observe/src/dirty_check.dart' show dirtyCheckZone; | |
| 73 import 'package:path/path.dart' as path; | 72 import 'package:path/path.dart' as path; |
| 74 import 'package:polymer_expressions/polymer_expressions.dart' | 73 import 'package:polymer_expressions/polymer_expressions.dart' |
| 75 show PolymerExpressions; | 74 show PolymerExpressions; |
| 76 import 'package:smoke/smoke.dart' as smoke; | 75 import 'package:smoke/smoke.dart' as smoke; |
| 77 import 'package:template_binding/template_binding.dart'; | 76 import 'package:template_binding/template_binding.dart'; |
| 78 | 77 |
| 79 import 'deserialize.dart' as deserialize; | 78 import 'deserialize.dart' as deserialize; |
| 80 | 79 |
| 81 export 'package:observe/observe.dart'; | 80 export 'package:observe/observe.dart'; |
| 82 export 'package:observe/html.dart'; | 81 export 'package:observe/html.dart'; |
| 83 | 82 |
| 84 part 'src/declaration.dart'; | 83 part 'src/declaration.dart'; |
| 85 part 'src/instance.dart'; | 84 part 'src/instance.dart'; |
| 86 part 'src/job.dart'; | 85 part 'src/job.dart'; |
| 87 part 'src/loader.dart'; | 86 part 'src/loader.dart'; |
| OLD | NEW |