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

Unified Diff: compiler/javatests/com/google/dart/compiler/resolver/ResolverTestCase.java

Issue 10890030: Move core and coreimpl from corelib/ to lib/core and lib/coreimpl. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebase. Created 8 years, 4 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/javatests/com/google/dart/compiler/resolver/ResolverTestCase.java
diff --git a/compiler/javatests/com/google/dart/compiler/resolver/ResolverTestCase.java b/compiler/javatests/com/google/dart/compiler/resolver/ResolverTestCase.java
index 7f520b1bbd752c56ff097c1581de71e413a52051..e25c11e3ffb7d17cf79057d4665e8697ae2b3490 100644
--- a/compiler/javatests/com/google/dart/compiler/resolver/ResolverTestCase.java
+++ b/compiler/javatests/com/google/dart/compiler/resolver/ResolverTestCase.java
@@ -284,41 +284,16 @@ abstract class ResolverTestCase extends TestCase {
}
@Override
- public InterfaceType getFallThroughError() {
- throw new AssertionError();
- }
-
- @Override
public InterfaceType getMapType(Type key, Type value) {
return defaultMapLiteralType;
}
@Override
- public InterfaceType getObjectArrayType() {
- throw new AssertionError();
- }
-
- @Override
public InterfaceType getObjectType() {
return objectElement.getType();
}
@Override
- public InterfaceType getArrayLiteralType(Type value) {
- return defaultListType;
- }
-
- @Override
- public InterfaceType getMapLiteralType(Type key, Type value) {
- return defaultMapLiteralType;
- }
-
- @Override
- public InterfaceType getStringImplementationType() {
- throw new AssertionError();
- }
-
- @Override
public InterfaceType getIteratorType(Type elementType) {
throw new AssertionError();
}

Powered by Google App Engine
This is Rietveld 408576698