| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 // Dart test program testing overridden messageNotUnderstood. | 4 // Dart test program testing overridden messageNotUnderstood. |
| 5 | 5 |
| 6 class GetName { | 6 class GetName { |
| 7 foo(a, b) => "foo"; | 7 foo(a, b) => "foo"; |
| 8 } | 8 } |
| 9 | 9 |
| 10 String getName(im) => im.invokeOn(new GetName()); | 10 String getName(im) => im.invokeOn(new GetName()); |
| 11 | 11 |
| 12 class OverriddenNoSuchMethod { | 12 class OverriddenNoSuchMethod { |
| 13 | 13 |
| 14 OverriddenNoSuchMethod() {} | 14 OverriddenNoSuchMethod() {} |
| 15 | 15 |
| 16 noSuchMethod(InvocationMirror mirror) { | 16 noSuchMethod(Invocation mirror) { |
| 17 Expect.equals("foo", getName(mirror)); | 17 Expect.equals("foo", getName(mirror)); |
| 18 // 'foo' was called with two parameters (not counting receiver). | 18 // 'foo' was called with two parameters (not counting receiver). |
| 19 List args = mirror.positionalArguments; | 19 List args = mirror.positionalArguments; |
| 20 Expect.equals(2, args.length); | 20 Expect.equals(2, args.length); |
| 21 Expect.equals(101, args[0]); | 21 Expect.equals(101, args[0]); |
| 22 Expect.equals(202, args[1]); | 22 Expect.equals(202, args[1]); |
| 23 return 5; | 23 return 5; |
| 24 } | 24 } |
| 25 | 25 |
| 26 static testMain() { | 26 static testMain() { |
| 27 var obj = new OverriddenNoSuchMethod(); | 27 var obj = new OverriddenNoSuchMethod(); |
| 28 Expect.equals(5, obj.foo(101, 202)); | 28 Expect.equals(5, obj.foo(101, 202)); |
| 29 } | 29 } |
| 30 } | 30 } |
| OLD | NEW |