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

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

Issue 420673002: Roll polymer packages to version 0.3.4 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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/polymer/CHANGELOG.md ('k') | pkg/polymer/lib/src/build/script_compactor.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) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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 19 matching lines...) Expand all
30 /// Example code, project status, and 30 /// Example code, project status, and
31 /// information about how to get started using Polymer.dart in your apps. 31 /// information about how to get started using Polymer.dart in your apps.
32 /// 32 ///
33 /// * [polymer.dart package](http://pub.dartlang.org/packages/polymer): 33 /// * [polymer.dart package](http://pub.dartlang.org/packages/polymer):
34 /// More details, such as the current major release number. 34 /// More details, such as the current major release number.
35 /// 35 ///
36 /// * [Upgrading to Polymer.dart](http://www.dartlang.org/polymer-dart/upgrading -to-polymer-from-web-ui.html): 36 /// * [Upgrading to Polymer.dart](http://www.dartlang.org/polymer-dart/upgrading -to-polymer-from-web-ui.html):
37 /// Tips for converting your apps from Web UI to Polymer.dart. 37 /// Tips for converting your apps from Web UI to Polymer.dart.
38 library polymer; 38 library polymer;
39 39
40 // Last ported from: Fri May 30 12:45:10 2014 -0700
41 // https://github.com/Polymer/polymer-dev/tree/32cc3e470e8ed760a9e596a24fe9b3ac2 a87737c
42
43 // Note: we are still missing some tests for new features. Use
44 // git diff 37eea00e13b9f86ab21c85a955585e8e4237e3d2 test
45 // from polymer-dev to see the changes.
46
47 import 'dart:async'; 40 import 'dart:async';
48 import 'dart:collection'; 41 import 'dart:collection';
49 import 'dart:html'; 42 import 'dart:html';
50 import 'dart:js' as js show context; 43 import 'dart:js' as js show context;
51 import 'dart:js' hide context; 44 import 'dart:js' hide context;
52 45
53 // *** Important Note *** 46 // *** Important Note ***
54 // This import is automatically replaced when calling pub build by the 47 // This import is automatically replaced when calling pub build by the
55 // mirrors_remover transformer. The transformer will remove any dependencies on 48 // mirrors_remover transformer. The transformer will remove any dependencies on
56 // dart:mirrors in deployed polymer apps. This and the import to 49 // dart:mirrors in deployed polymer apps. This and the import to
(...skipping 26 matching lines...) Expand all
83 76
84 export 'package:observe/observe.dart'; 77 export 'package:observe/observe.dart';
85 export 'package:observe/html.dart'; 78 export 'package:observe/html.dart';
86 export 'auto_binding.dart'; 79 export 'auto_binding.dart';
87 80
88 part 'src/declaration.dart'; 81 part 'src/declaration.dart';
89 part 'src/events.dart'; 82 part 'src/events.dart';
90 part 'src/instance.dart'; 83 part 'src/instance.dart';
91 part 'src/job.dart'; 84 part 'src/job.dart';
92 part 'src/loader.dart'; 85 part 'src/loader.dart';
86 part 'src/property_accessor.dart';
OLDNEW
« no previous file with comments | « pkg/polymer/CHANGELOG.md ('k') | pkg/polymer/lib/src/build/script_compactor.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698