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

Side by Side Diff: pkg/polymer/lib/src/build/import_inliner.dart

Issue 23757034: Rearranges the polymer package now that the old compiler is gone. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 3 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/lib/src/build/common.dart ('k') | pkg/polymer/lib/src/build/linter.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) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 /** Transfomer that inlines polymer-element definitions from html imports. */ 5 /** Transfomer that inlines polymer-element definitions from html imports. */
6 library polymer.src.transform.import_inliner; 6 library polymer.src.build.import_inliner;
7 7
8 import 'dart:async'; 8 import 'dart:async';
9 9
10 import 'package:barback/barback.dart'; 10 import 'package:barback/barback.dart';
11 import 'package:path/path.dart' as path; 11 import 'package:path/path.dart' as path;
12 import 'package:html5lib/dom.dart' show Document, Node, DocumentFragment; 12 import 'package:html5lib/dom.dart' show Document, Node, DocumentFragment;
13 import 'package:html5lib/dom_parsing.dart' show TreeVisitor; 13 import 'package:html5lib/dom_parsing.dart' show TreeVisitor;
14 import 'common.dart'; 14 import 'common.dart';
15 15
16 /** Recursively inlines polymer-element definitions from html imports. */ 16 /** Recursively inlines polymer-element definitions from html imports. */
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 'cite', // in blockquote, del, ins, q 163 'cite', // in blockquote, del, ins, q
164 'data', // in object 164 'data', // in object
165 'formaction', // in button, input 165 'formaction', // in button, input
166 'href', // in a, area, link, base, command 166 'href', // in a, area, link, base, command
167 'icon', // in command 167 'icon', // in command
168 'manifest', // in html 168 'manifest', // in html
169 'poster', // in video 169 'poster', // in video
170 'src', // in audio, embed, iframe, img, input, script, source, track, 170 'src', // in audio, embed, iframe, img, input, script, source, track,
171 // video 171 // video
172 ]; 172 ];
OLDNEW
« no previous file with comments | « pkg/polymer/lib/src/build/common.dart ('k') | pkg/polymer/lib/src/build/linter.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698