OLD | NEW |
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 // Test that a call to a bailout method in dart2js resolves to the | 7 // Test that a call to a bailout method in dart2js resolves to the |
8 // right method. | 8 // right method. |
9 | 9 |
10 var reachedAfoo = new C(); | 10 var reachedAfoo = new C(); |
(...skipping 28 matching lines...) Expand all Loading... |
39 main() { | 39 main() { |
40 // Using a loop makes sure the 'foo' methods will have an optimized | 40 // Using a loop makes sure the 'foo' methods will have an optimized |
41 // version. | 41 // version. |
42 while (reachedAfoo.value != 0) { | 42 while (reachedAfoo.value != 0) { |
43 new A().foo(); | 43 new A().foo(); |
44 new B().foo(); | 44 new B().foo(); |
45 } | 45 } |
46 new B().bar(); | 46 new B().bar(); |
47 Expect.equals(1, reachedAfoo.value); | 47 Expect.equals(1, reachedAfoo.value); |
48 } | 48 } |
OLD | NEW |