| Index: compiler/java/com/google/dart/compiler/resolver/LibraryElement.java
|
| diff --git a/compiler/java/com/google/dart/compiler/resolver/LibraryElement.java b/compiler/java/com/google/dart/compiler/resolver/LibraryElement.java
|
| index 3b0b4289d697c9b94e7d4f81c6c342f6e792c179..7d62cecebf65d9c71a44d93fca7dfa2557792954 100644
|
| --- a/compiler/java/com/google/dart/compiler/resolver/LibraryElement.java
|
| +++ b/compiler/java/com/google/dart/compiler/resolver/LibraryElement.java
|
| @@ -6,10 +6,14 @@ package com.google.dart.compiler.resolver;
|
|
|
| import com.google.dart.compiler.ast.LibraryUnit;
|
|
|
| +import java.util.List;
|
| +
|
| public interface LibraryElement extends EnclosingElement {
|
| Scope getImportScope();
|
|
|
| Scope getScope();
|
| +
|
| + List<Element> getExportedElements();
|
|
|
| LibraryUnit getLibraryUnit();
|
|
|
|
|