Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(316)

Side by Side Diff: pkg/polymer/lib/polymer.dart

Issue 180273004: Fixes in smoke, which in turn should fix todomvc. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « pkg/observe/lib/src/path_observer.dart ('k') | pkg/polymer/lib/src/declaration.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 27 matching lines...) Expand all
38 * Tips for converting your apps from Web UI to Polymer.dart. 38 * Tips for converting your apps from Web UI to Polymer.dart.
39 */ 39 */
40 library polymer; 40 library polymer;
41 41
42 import 'dart:async'; 42 import 'dart:async';
43 import 'dart:collection' show HashMap, HashSet; 43 import 'dart:collection' show HashMap, HashSet;
44 import 'dart:html'; 44 import 'dart:html';
45 import 'dart:js' as js; 45 import 'dart:js' as js;
46 46
47 @MirrorsUsed(metaTargets: 47 @MirrorsUsed(metaTargets:
48 const [Reflectable, ObservableProperty, CustomTag, _InitMethodAnnotation], 48 const [Reflectable, ObservableProperty, PublishedProperty, CustomTag,
49 _InitMethodAnnotation],
50 targets: const [PublishedProperty],
49 override: const ['smoke.mirrors', 'polymer']) 51 override: const ['smoke.mirrors', 'polymer'])
50 import 'dart:mirrors'; 52 import 'dart:mirrors';
51 53
52 import 'package:logging/logging.dart' show Logger, Level; 54 import 'package:logging/logging.dart' show Logger, Level;
53 import 'package:observe/observe.dart'; 55 import 'package:observe/observe.dart';
54 import 'package:observe/src/dirty_check.dart' show dirtyCheckZone; 56 import 'package:observe/src/dirty_check.dart' show dirtyCheckZone;
55 import 'package:path/path.dart' as path; 57 import 'package:path/path.dart' as path;
56 import 'package:polymer_expressions/polymer_expressions.dart' 58 import 'package:polymer_expressions/polymer_expressions.dart'
57 show PolymerExpressions; 59 show PolymerExpressions;
58 import 'package:smoke/smoke.dart' as smoke; 60 import 'package:smoke/smoke.dart' as smoke;
59 import 'package:smoke/mirrors.dart' as smoke; 61 import 'package:smoke/mirrors.dart' as smoke;
60 import 'package:template_binding/template_binding.dart'; 62 import 'package:template_binding/template_binding.dart';
61 import 'package:web_components/polyfill.dart' show customElementsReady; 63 import 'package:web_components/polyfill.dart' show customElementsReady;
62 64
63 import 'deserialize.dart' as deserialize; 65 import 'deserialize.dart' as deserialize;
64 66
65 export 'package:observe/observe.dart'; 67 export 'package:observe/observe.dart';
66 export 'package:observe/html.dart'; 68 export 'package:observe/html.dart';
67 69
68 part 'src/boot.dart'; 70 part 'src/boot.dart';
69 part 'src/declaration.dart'; 71 part 'src/declaration.dart';
70 part 'src/instance.dart'; 72 part 'src/instance.dart';
71 part 'src/job.dart'; 73 part 'src/job.dart';
72 part 'src/loader.dart'; 74 part 'src/loader.dart';
OLDNEW
« no previous file with comments | « pkg/observe/lib/src/path_observer.dart ('k') | pkg/polymer/lib/src/declaration.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698