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

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

Issue 23189012: Fix for issue 11708 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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: 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 9a5d806d1e9f3a22658fc1d1da9aa7e1b3f430b6..30a3670055073e2ef1b2fc989941315b68c085c2 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
@@ -900,20 +900,6 @@ public class NonErrorResolverTest extends ResolverTestCase {
verify(source);
}
- public void test_implicitThisReferenceInInitializer_staticField_superClass() throws Exception {
- Source source = addSource(createSource(//
- "class A {",
- " static var f;",
- "}",
- "class B extends A {",
- " var v;",
- " B() : v = f;",
- "}"));
- resolve(source);
- assertNoErrors();
- verify(source);
- }
-
public void test_implicitThisReferenceInInitializer_staticField_thisClass() throws Exception {
Source source = addSource(createSource(//
"class A {",

Powered by Google App Engine
This is Rietveld 408576698