| Index: compiler/java/com/google/dart/compiler/testing/TestCompilerConfiguration.java
|
| diff --git a/compiler/java/com/google/dart/compiler/testing/TestCompilerConfiguration.java b/compiler/java/com/google/dart/compiler/testing/TestCompilerConfiguration.java
|
| index fc0fb18546affdaa236dd750efa7ce8d8cd0d116..0a117c171396ba845a719d5c4836cb5316dc4179 100644
|
| --- a/compiler/java/com/google/dart/compiler/testing/TestCompilerConfiguration.java
|
| +++ b/compiler/java/com/google/dart/compiler/testing/TestCompilerConfiguration.java
|
| @@ -101,11 +101,6 @@ public class TestCompilerConfiguration implements CompilerConfiguration {
|
| }
|
|
|
| @Override
|
| - public boolean printMachineProblems() {
|
| - return true;
|
| - }
|
| -
|
| - @Override
|
| public boolean collectComments() {
|
| return false;
|
| }
|
| @@ -125,4 +120,9 @@ public class TestCompilerConfiguration implements CompilerConfiguration {
|
| public CompilerOptions getCompilerOptions() {
|
| throw new AssertionError();
|
| }
|
| +
|
| + @Override
|
| + public ErrorFormat printErrorFormat() {
|
| + return ErrorFormat.MACHINE;
|
| + }
|
| }
|
|
|