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

Side by Side Diff: tests/language/src/ImplicitClosureTest.dart

Issue 8725009: More --use_slow_path tests, add that VMOption to two tests. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 9 years 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) 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 for testing invocation of implicit closures. 4 // Dart test program for testing invocation of implicit closures.
5 // VMOptions=
regis 2011/11/28 23:25:47 Is this line necessary?
srdjan 2011/11/28 23:29:30 Yes, so that we run it also with no VM options.
6 // VMOptions=--use_slow_path
5 7
6 class First { 8 class First {
7 First(this.i) {} 9 First(this.i) {}
8 var b; 10 var b;
9 int foo() { return i; } 11 int foo() { return i; }
10 Function foo1() { 12 Function foo1() {
11 local() { 13 local() {
12 return i; 14 return i;
13 } 15 }
14 return local; 16 return local;
(...skipping 14 matching lines...) Expand all
29 31
30 var ib = obj.foo; 32 var ib = obj.foo;
31 Expect.equals(obj.i, ib()); 33 Expect.equals(obj.i, ib());
32 } 34 }
33 } 35 }
34 36
35 37
36 main() { 38 main() {
37 ImplicitClosureTest.testMain(); 39 ImplicitClosureTest.testMain();
38 } 40 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698