OLD | NEW |
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.build.import_inliner; | 6 library polymer.src.build.import_inliner; |
7 | 7 |
8 import 'dart:async'; | 8 import 'dart:async'; |
9 import 'dart:convert'; | 9 import 'dart:convert'; |
10 | 10 |
(...skipping 226 matching lines...) Loading... |
237 /// | 237 /// |
238 /// This transformer assumes that all script tags point to external files. To | 238 /// This transformer assumes that all script tags point to external files. To |
239 /// support script tags with inlined code, use this transformer after running | 239 /// support script tags with inlined code, use this transformer after running |
240 /// [InlineCodeExtractor] on an earlier phase. | 240 /// [InlineCodeExtractor] on an earlier phase. |
241 class ImportInliner extends Transformer { | 241 class ImportInliner extends Transformer { |
242 final TransformOptions options; | 242 final TransformOptions options; |
243 | 243 |
244 ImportInliner(this.options); | 244 ImportInliner(this.options); |
245 | 245 |
246 /// Only run on entry point .html files. | 246 /// Only run on entry point .html files. |
247 Future<bool> isPrimary(Asset input) => | 247 Future<bool> isPrimary(AssetId id) => |
248 new Future.value(options.isHtmlEntryPoint(input.id)); | 248 new Future.value(options.isHtmlEntryPoint(id)); |
249 | 249 |
250 Future apply(Transform transform) => | 250 Future apply(Transform transform) => |
251 new _HtmlInliner(options, transform).apply(); | 251 new _HtmlInliner(options, transform).apply(); |
252 } | 252 } |
253 | 253 |
254 const TYPE_DART_APP = 'application/dart'; | 254 const TYPE_DART_APP = 'application/dart'; |
255 const TYPE_DART_COMPONENT = 'application/dart;component=1'; | 255 const TYPE_DART_COMPONENT = 'application/dart;component=1'; |
256 const TYPE_JS = 'text/javascript'; | 256 const TYPE_JS = 'text/javascript'; |
257 | 257 |
258 /// Internally adjusts urls in the html that we are about to inline. | 258 /// Internally adjusts urls in the html that we are about to inline. |
(...skipping 128 matching lines...) Loading... |
387 ]; | 387 ]; |
388 | 388 |
389 _getSpan(SourceFile file, AstNode node) => file.span(node.offset, node.end); | 389 _getSpan(SourceFile file, AstNode node) => file.span(node.offset, node.end); |
390 | 390 |
391 const COMPONENT_WARNING = | 391 const COMPONENT_WARNING = |
392 'More than one Dart script per HTML document is not supported, but in the ' | 392 'More than one Dart script per HTML document is not supported, but in the ' |
393 'near future Dartium will execute each tag as a separate isolate. If this ' | 393 'near future Dartium will execute each tag as a separate isolate. If this ' |
394 'code is meant to load definitions that are part of the same application ' | 394 'code is meant to load definitions that are part of the same application ' |
395 'you should switch it to use the "application/dart;component=1" mime-type ' | 395 'you should switch it to use the "application/dart;component=1" mime-type ' |
396 'instead.'; | 396 'instead.'; |
OLD | NEW |