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

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

Issue 8949055: Issue 250: Allow for GNU formatted errors (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Nits Created 9 years 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 13b9ef1fd24f55f7cb10e02416e0db30c98fe747..eb2bcfd6b18a473fb719755259e971aaea661c12 100644
--- a/compiler/java/com/google/dart/compiler/DelegatingCompilerConfiguration.java
+++ b/compiler/java/com/google/dart/compiler/DelegatingCompilerConfiguration.java
@@ -99,11 +99,6 @@ public class DelegatingCompilerConfiguration implements CompilerConfiguration {
}
@Override
- public boolean printMachineProblems() {
- return delegate.printMachineProblems();
- }
-
- @Override
public boolean collectComments() {
return delegate.collectComments();
}
@@ -117,4 +112,9 @@ public class DelegatingCompilerConfiguration implements CompilerConfiguration {
public CompilerOptions getCompilerOptions() {
return delegate.getCompilerOptions();
}
+
+ @Override
+ public ErrorFormat printErrorFormat() {
+ return delegate.printErrorFormat();
+ }
}

Powered by Google App Engine
This is Rietveld 408576698