| Index: dart/lib/compiler/implementation/elements/elements.dart
|
| diff --git a/dart/lib/compiler/implementation/elements/elements.dart b/dart/lib/compiler/implementation/elements/elements.dart
|
| index bcb8f6f6249611111ef42d70d2a98f049f6c435b..72e3a9abfe799df7f460665595cecc8af2774902 100644
|
| --- a/dart/lib/compiler/implementation/elements/elements.dart
|
| +++ b/dart/lib/compiler/implementation/elements/elements.dart
|
| @@ -482,8 +482,8 @@ class LibraryElement extends ScopeContainerElement {
|
| CompilationUnitElement entryCompilationUnit;
|
| Link<CompilationUnitElement> compilationUnits =
|
| const EmptyLink<CompilationUnitElement>();
|
| - Link<LibraryTag> tags = const EmptyLink<LibraryTag>();
|
| - LibraryTag libraryTag;
|
| + Link<ScriptTag> tags = const EmptyLink<ScriptTag>();
|
| + ScriptTag libraryTag;
|
| bool canUseNative = false;
|
| LibraryElement patch = null;
|
|
|
| @@ -500,7 +500,7 @@ class LibraryElement extends ScopeContainerElement {
|
| compilationUnits = compilationUnits.prepend(element);
|
| }
|
|
|
| - void addTag(LibraryTag tag, DiagnosticListener listener) {
|
| + void addTag(ScriptTag tag, DiagnosticListener listener) {
|
| tags = tags.prepend(tag);
|
| }
|
|
|
|
|