Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(207)

Unified Diff: compiler/java/com/google/dart/compiler/DelegatingCompilerConfiguration.java

Issue 9479013: Remove backends. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: More clean up Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: compiler/java/com/google/dart/compiler/DelegatingCompilerConfiguration.java
diff --git a/compiler/java/com/google/dart/compiler/DelegatingCompilerConfiguration.java b/compiler/java/com/google/dart/compiler/DelegatingCompilerConfiguration.java
index 0ec62b1cc36b14573472d61d601ad80531a60fdf..f6e1a77318a9ede144021655579cb51efe09c4ee 100644
--- a/compiler/java/com/google/dart/compiler/DelegatingCompilerConfiguration.java
+++ b/compiler/java/com/google/dart/compiler/DelegatingCompilerConfiguration.java
@@ -24,21 +24,11 @@ public class DelegatingCompilerConfiguration implements CompilerConfiguration {
}
@Override
- public boolean developerModeChecks() {
- return delegate.developerModeChecks();
- }
-
- @Override
public List<DartCompilationPhase> getPhases() {
return delegate.getPhases();
}
@Override
- public List<Backend> getBackends() {
- return delegate.getBackends();
- }
-
- @Override
public CompilerMetrics getCompilerMetrics() {
return delegate.getCompilerMetrics();
}
@@ -69,26 +59,11 @@ public class DelegatingCompilerConfiguration implements CompilerConfiguration {
}
@Override
- public File getOutputFilename() {
- return delegate.getOutputFilename();
- }
-
- @Override
public File getOutputDirectory() {
return delegate.getOutputDirectory();
}
@Override
- public boolean checkOnly() {
- return delegate.checkOnly();
- }
-
- @Override
- public boolean expectEntryPoint() {
- return delegate.expectEntryPoint();
- }
-
- @Override
public LibrarySource getSystemLibraryFor(String importSpec) {
return delegate.getSystemLibraryFor(importSpec);
}

Powered by Google App Engine
This is Rietveld 408576698