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

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

Issue 8476005: Support for --machine-problems, tests for PrettyErrorFormatter (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years, 1 month 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 c908b510b8fee122c2b670b078bb19344cf30cbd..13b9ef1fd24f55f7cb10e02416e0db30c98fe747 100644
--- a/compiler/java/com/google/dart/compiler/DelegatingCompilerConfiguration.java
+++ b/compiler/java/com/google/dart/compiler/DelegatingCompilerConfiguration.java
@@ -99,6 +99,11 @@ public class DelegatingCompilerConfiguration implements CompilerConfiguration {
}
@Override
+ public boolean printMachineProblems() {
+ return delegate.printMachineProblems();
+ }
+
+ @Override
public boolean collectComments() {
return delegate.collectComments();
}

Powered by Google App Engine
This is Rietveld 408576698