| 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 /** | 5 /** |
| 6 * Custom HTML tags, data binding, and templates for building | 6 * Custom HTML tags, data binding, and templates for building |
| 7 * structured, encapsulated, client-side web apps. | 7 * structured, encapsulated, client-side web apps. |
| 8 * | 8 * |
| 9 * Polymer.dart, the next evolution of Web UI, | 9 * Polymer.dart, the next evolution of Web UI, |
| 10 * is an in-progress Dart port of the | 10 * is an in-progress Dart port of the |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 import 'package:logging/logging.dart' show Logger, Level; | 53 import 'package:logging/logging.dart' show Logger, Level; |
| 54 import 'package:meta/meta.dart' show deprecated; | 54 import 'package:meta/meta.dart' show deprecated; |
| 55 import 'package:observe/observe.dart'; | 55 import 'package:observe/observe.dart'; |
| 56 import 'package:observe/src/dirty_check.dart' show dirtyCheckZone; | 56 import 'package:observe/src/dirty_check.dart' show dirtyCheckZone; |
| 57 import 'package:path/path.dart' as path; | 57 import 'package:path/path.dart' as path; |
| 58 import 'package:polymer_expressions/polymer_expressions.dart' | 58 import 'package:polymer_expressions/polymer_expressions.dart' |
| 59 show PolymerExpressions; | 59 show PolymerExpressions; |
| 60 import 'package:template_binding/template_binding.dart'; | 60 import 'package:template_binding/template_binding.dart'; |
| 61 | 61 |
| 62 import 'deserialize.dart' as deserialize; | 62 import 'deserialize.dart' as deserialize; |
| 63 import 'job.dart'; | |
| 64 import 'platform.dart' as platform; | |
| 65 import 'src/reflected_type.dart'; | 63 import 'src/reflected_type.dart'; |
| 66 | 64 |
| 67 export 'package:observe/observe.dart'; | 65 export 'package:observe/observe.dart'; |
| 68 export 'package:observe/html.dart'; | 66 export 'package:observe/html.dart'; |
| 69 | 67 |
| 70 part 'src/boot.dart'; | 68 part 'src/boot.dart'; |
| 71 part 'src/declaration.dart'; | 69 part 'src/declaration.dart'; |
| 72 part 'src/instance.dart'; | 70 part 'src/instance.dart'; |
| 71 part 'src/job.dart'; |
| 73 part 'src/loader.dart'; | 72 part 'src/loader.dart'; |
| OLD | NEW |