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

Side by Side Diff: dart/tests/language/overridden_no_such_method.dart

Issue 14049009: Rename Invocation to InvocationMirror. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Merged Created 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « dart/tests/language/no_such_method_test.dart ('k') | dart/tests/language/super_call4_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 }
OLDNEW
« no previous file with comments | « dart/tests/language/no_such_method_test.dart ('k') | dart/tests/language/super_call4_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698