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

Unified Diff: frog/tests/leg_only/src/SuperCallTest.dart

Issue 10250002: test rename overhaul: step 5 - frog and leg tests (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 8 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: frog/tests/leg_only/src/SuperCallTest.dart
diff --git a/frog/tests/leg_only/src/SuperCallTest.dart b/frog/tests/leg_only/src/SuperCallTest.dart
deleted file mode 100644
index 6fde7c24f48f9b0d10b97fbd30e76ee9447d43d3..0000000000000000000000000000000000000000
--- a/frog/tests/leg_only/src/SuperCallTest.dart
+++ /dev/null
@@ -1,17 +0,0 @@
-class A {
- foo() => "A.foo${baz()}";
- baz() => "A.baz";
- hest(String s, int i) => "$s$i";
-}
-
-class B extends A {
- foo() => "B.foo${super.foo()}";
- baz() => "B.baz";
- hest(s, i) => "B.hest${super.hest(s, i)}";
-}
-
-main() {
- B b = new B();
- Expect.equals("B.fooA.fooB.baz", b.foo());
- Expect.equals("B.hestfisk42", b.hest('fisk', 42));
-}

Powered by Google App Engine
This is Rietveld 408576698