Index: compiler/javatests/com/google/dart/compiler/CompilerTestCase.java |
diff --git a/compiler/javatests/com/google/dart/compiler/CompilerTestCase.java b/compiler/javatests/com/google/dart/compiler/CompilerTestCase.java |
index 21e9f2b83f5e5660c10323b51594cd6efa2e172c..9550465c7a2033038946be1ea16a6e51c1090b5e 100644 |
--- a/compiler/javatests/com/google/dart/compiler/CompilerTestCase.java |
+++ b/compiler/javatests/com/google/dart/compiler/CompilerTestCase.java |
@@ -103,12 +103,16 @@ public abstract class CompilerTestCase extends TestCase { |
} |
} |
+ public List<DartCompilationError> getTypeErrors() { |
+ return typeErrors; |
+ } |
+ |
public List<DartCompilationError> getCompilationErrors() { |
return compilationErrors; |
} |
- public List<DartCompilationError> getTypeErrors() { |
- return typeErrors; |
+ public List<DartCompilationError> getCompilationWarnings() { |
+ return compilationWarnings; |
} |
/** |