Index: compiler/java/com/google/dart/compiler/CompilerConfiguration.java |
diff --git a/compiler/java/com/google/dart/compiler/CompilerConfiguration.java b/compiler/java/com/google/dart/compiler/CompilerConfiguration.java |
index 78100898f3251aaf58eb8c758b413eb0f633e887..eb2de4101ca54294741e50f5cfeda02f96018ffd 100644 |
--- a/compiler/java/com/google/dart/compiler/CompilerConfiguration.java |
+++ b/compiler/java/com/google/dart/compiler/CompilerConfiguration.java |
@@ -1,4 +1,4 @@ |
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
+// 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. |
@@ -11,8 +11,7 @@ import java.io.File; |
import java.util.List; |
/** |
- * A configuration for the Dart compiler specifying which phases |
- * and backends will be executed. |
+ * A configuration for the Dart compiler specifying which phases will be executed. |
*/ |
public interface CompilerConfiguration { |
@@ -23,8 +22,6 @@ public interface CompilerConfiguration { |
List<DartCompilationPhase> getPhases(); |
- List<Backend> getBackends(); |
- |
/** |
* Indicates whether developer-mode runtime checks are needed. |
* @return true if developer-mode checks should be inserted, false if not |
@@ -62,21 +59,11 @@ public interface CompilerConfiguration { |
boolean incremental(); |
/** |
- * The first backend that runs outputs to this filename if set. |
- */ |
- File getOutputFilename(); |
- |
- /** |
* The work directory where incremental build output is stored between invocations. |
*/ |
File getOutputDirectory(); |
/** |
- * Returns <code>true</code> if the compiler should not produce output. |
- */ |
- boolean checkOnly(); |
- |
- /** |
* Returns <code>true</code> if the compiler should expect an entry point to be defined. |
*/ |
boolean expectEntryPoint(); |
zundel
2012/02/28 20:37:21
I think this is only referenced inside of packageA
scheglov
2012/02/29 22:46:41
Done.
|