| 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));
|
| -}
|
|
|