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

Unified Diff: editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/NonErrorResolverTest.java

Issue 16231012: Cover the 'extends' and typedef cases of the CompileTimeErrorCode.RECURSIVE_INTERFACE_INHERITANCE e… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 7 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: editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/NonErrorResolverTest.java
diff --git a/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/NonErrorResolverTest.java b/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/NonErrorResolverTest.java
index b6ddb9a0c85ef539b8333bb52980ec7de8f3a2b0..75d731f988a52bf20f8f51d4b2b49a1ab7cf456e 100644
--- a/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/NonErrorResolverTest.java
+++ b/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/NonErrorResolverTest.java
@@ -13,7 +13,6 @@
*/
package com.google.dart.engine.resolver;
-import com.google.dart.engine.error.CompileTimeErrorCode;
import com.google.dart.engine.source.Source;
public class NonErrorResolverTest extends ResolverTestCase {
@@ -1730,15 +1729,6 @@ public class NonErrorResolverTest extends ResolverTestCase {
verify(source);
}
- public void test_recursiveInterfaceInheritance() throws Exception {
- Source source = addSource(createSource(//
- "abstract class A implements A {}",
- "class B implements A {}"));
- resolve(source);
- assertErrors(CompileTimeErrorCode.IMPLEMENTS_SELF);
- verify(source);
- }
-
public void test_redirectToInvalidFunctionType() throws Exception {
Source source = addSource(createSource(//
"class A implements B {",

Powered by Google App Engine
This is Rietveld 408576698