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

Side by Side Diff: dart/tests/language/invocation_mirror_invoke_on_test.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
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 4
5 import "package:expect/expect.dart"; 5 import "package:expect/expect.dart";
6 6
7 // Testing InvocationMirror.invokeOn method; test of issue 7227. 7 // Testing Invocation.invokeOn method; test of issue 7227.
8 8
9 var reachedSetX = 0; 9 var reachedSetX = 0;
10 var reachedGetX = 0; 10 var reachedGetX = 0;
11 var reachedM = 0; 11 var reachedM = 0;
12 12
13 class A { 13 class A {
14 14
15 set x(val) { 15 set x(val) {
16 reachedSetX = val; 16 reachedSetX = val;
17 } 17 }
(...skipping 12 matching lines...) Expand all
30 30
31 main () { 31 main () {
32 var b = new B(); 32 var b = new B();
33 b.x = 10; 33 b.x = 10;
34 Expect.equals(10, reachedSetX); 34 Expect.equals(10, reachedSetX);
35 b.x; 35 b.x;
36 Expect.equals(1, reachedGetX); 36 Expect.equals(1, reachedGetX);
37 b.m(); 37 b.m();
38 Expect.equals(1, reachedM); 38 Expect.equals(1, reachedM);
39 } 39 }
OLDNEW
« no previous file with comments | « dart/tests/compiler/dart2js_extra/no_such_method_test.dart ('k') | dart/tests/language/invocation_mirror_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698