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

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

Issue 270693005: Remove unused import in polymer, fix comment. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 7 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 | « no previous file | pkg/polymer/lib/src/instance.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 /// 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
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:path/path.dart' as path;
73 import 'package:polymer_expressions/polymer_expressions.dart' 72 import 'package:polymer_expressions/polymer_expressions.dart'
74 show PolymerExpressions; 73 show PolymerExpressions;
75 import 'package:smoke/smoke.dart' as smoke; 74 import 'package:smoke/smoke.dart' as smoke;
76 import 'package:template_binding/template_binding.dart'; 75 import 'package:template_binding/template_binding.dart';
77 76
78 import 'deserialize.dart' as deserialize; 77 import 'deserialize.dart' as deserialize;
79 78
80 export 'package:observe/observe.dart'; 79 export 'package:observe/observe.dart';
81 export 'package:observe/html.dart'; 80 export 'package:observe/html.dart';
82 81
83 part 'src/declaration.dart'; 82 part 'src/declaration.dart';
84 part 'src/instance.dart'; 83 part 'src/instance.dart';
85 part 'src/job.dart'; 84 part 'src/job.dart';
86 part 'src/loader.dart'; 85 part 'src/loader.dart';
OLDNEW
« no previous file with comments | « no previous file | pkg/polymer/lib/src/instance.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698