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

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

Issue 204143002: Changes in smoke in preparation of polymer's codegen: (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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
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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 override: const ['smoke.mirrors']) 69 override: const ['smoke.mirrors'])
70 import 'dart:mirrors' show MirrorsUsed; // ** see important note above 70 import 'dart:mirrors' show MirrorsUsed; // ** see important note above
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;
Siggi Cherem (dart-lang) 2014/03/19 00:07:02 this was used to call "useMirrors" in loader, that
80 import 'package:template_binding/template_binding.dart'; 79 import 'package:template_binding/template_binding.dart';
81 80
82 import 'deserialize.dart' as deserialize; 81 import 'deserialize.dart' as deserialize;
83 import 'src/mirror_loader.dart' as loader; // ** see important note above 82 import 'src/mirror_loader.dart' as loader; // ** see important note above
84 83
85 export 'package:observe/observe.dart'; 84 export 'package:observe/observe.dart';
86 export 'package:observe/html.dart'; 85 export 'package:observe/html.dart';
87 86
88 part 'src/declaration.dart'; 87 part 'src/declaration.dart';
89 part 'src/instance.dart'; 88 part 'src/instance.dart';
90 part 'src/job.dart'; 89 part 'src/job.dart';
91 part 'src/loader.dart'; 90 part 'src/loader.dart';
OLDNEW
« no previous file with comments | « pkg/pkg.status ('k') | pkg/polymer/lib/src/declaration.dart » ('j') | pkg/smoke/pubspec.yaml » ('J')

Powered by Google App Engine
This is Rietveld 408576698