| Index: sdk/lib/_internal/compiler/implementation/scanner/listener.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/scanner/listener.dart b/sdk/lib/_internal/compiler/implementation/scanner/listener.dart
|
| index 783be1ce0aab47f07f517ba3a52a39943d80c74d..e8a15aa55ec01b7b5cc34e3ef5487a1c173f47f6 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/scanner/listener.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/scanner/listener.dart
|
| @@ -641,7 +641,7 @@ class ElementListener extends Listener {
|
| return result;
|
| }
|
|
|
| - LiteralString popLiteralString() {
|
| + StringNode popLiteralString() {
|
| StringNode node = popNode();
|
| // TODO(lrn): Handle interpolations in script tags.
|
| if (node.isInterpolation) {
|
| @@ -671,7 +671,7 @@ class ElementListener extends Listener {
|
| if (asKeyword != null) {
|
| prefix = popNode();
|
| }
|
| - LiteralString uri = popLiteralString();
|
| + StringNode uri = popLiteralString();
|
| addLibraryTag(new Import(importKeyword, uri, prefix, combinators));
|
| }
|
|
|
| @@ -703,7 +703,7 @@ class ElementListener extends Listener {
|
| }
|
|
|
| void endPart(Token partKeyword, Token semicolon) {
|
| - LiteralString uri = popLiteralString();
|
| + StringNode uri = popLiteralString();
|
| addLibraryTag(new Part(partKeyword, uri));
|
| }
|
|
|
|
|