Index: dart/compiler/java/com/google/dart/compiler/resolver/LibraryElement.java |
diff --git a/dart/compiler/java/com/google/dart/compiler/resolver/LibraryElement.java b/dart/compiler/java/com/google/dart/compiler/resolver/LibraryElement.java |
deleted file mode 100644 |
index 529ad646a0311a9fe21afdc99350f91bd22cc272..0000000000000000000000000000000000000000 |
--- a/dart/compiler/java/com/google/dart/compiler/resolver/LibraryElement.java |
+++ /dev/null |
@@ -1,23 +0,0 @@ |
-// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
-// for details. All rights reserved. Use of this source code is governed by a |
-// BSD-style license that can be found in the LICENSE file. |
- |
-package com.google.dart.compiler.resolver; |
- |
-import com.google.dart.compiler.ast.LibraryUnit; |
- |
-import java.util.Collection; |
- |
-public interface LibraryElement extends EnclosingElement { |
- Scope getImportScope(); |
- |
- Scope getScope(); |
- |
- Collection<Element> getExportedElements(); |
- |
- LibraryUnit getLibraryUnit(); |
- |
- void setEntryPoint(MethodElement element); |
- |
- MethodElement getEntryPoint(); |
-} |