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

Unified Diff: tests/language/super_abstract_method_test.dart

Issue 114473004: Fix for 15028. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Nit/cleanup: delete commented out code. Created 7 years 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
« no previous file with comments | « editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/StaticWarningCodeTest.java ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/super_abstract_method_test.dart
diff --git a/tests/language/super_abstract_method_test.dart b/tests/language/super_abstract_method_test.dart
index fbb364801718d269fb4f2a003df659780f2401ac..0fb92a5e821e519796594a504baf3bf037a12d17 100644
--- a/tests/language/super_abstract_method_test.dart
+++ b/tests/language/super_abstract_method_test.dart
@@ -15,6 +15,7 @@ abstract class A extends Base {
foo();
}
+/* /// 01: continued
class B extends A {
testSuperCall() => super.foo();
}
@@ -23,3 +24,4 @@ main() {
Expect.equals(42, new B().foo());
Expect.equals(42, new B().testSuperCall());
}
+*/ /// 01: static type warning
« no previous file with comments | « editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/StaticWarningCodeTest.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698