| 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 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 381 'data', // in object | 381 'data', // in object |
| 382 'formaction', // in button, input | 382 'formaction', // in button, input |
| 383 'href', // in a, area, link, base, command | 383 'href', // in a, area, link, base, command |
| 384 'icon', // in command | 384 'icon', // in command |
| 385 'manifest', // in html | 385 'manifest', // in html |
| 386 'poster', // in video | 386 'poster', // in video |
| 387 'src', // in audio, embed, iframe, img, input, script, source, track, | 387 'src', // in audio, embed, iframe, img, input, script, source, track, |
| 388 // video | 388 // video |
| 389 ]; | 389 ]; |
| 390 | 390 |
| 391 _getSpan(SourceFile file, ASTNode node) => file.span(node.offset, node.end); | 391 _getSpan(SourceFile file, AstNode node) => file.span(node.offset, node.end); |
| OLD | NEW |