| 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"; |
| 6 |
| 5 // 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 |
| 6 // right method. | 8 // right method. |
| 7 | 9 |
| 8 var reachedAfoo = new C(); | 10 var reachedAfoo = new C(); |
| 9 | 11 |
| 10 class A { | 12 class A { |
| 11 foo() { | 13 foo() { |
| 12 // Using '++' makes sure there is a type guard. | 14 // Using '++' makes sure there is a type guard. |
| 13 reachedAfoo++; | 15 reachedAfoo++; |
| 14 } | 16 } |
| (...skipping 22 matching lines...) Expand all Loading... |
| 37 main() { | 39 main() { |
| 38 // 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 |
| 39 // version. | 41 // version. |
| 40 while (reachedAfoo.value != 0) { | 42 while (reachedAfoo.value != 0) { |
| 41 new A().foo(); | 43 new A().foo(); |
| 42 new B().foo(); | 44 new B().foo(); |
| 43 } | 45 } |
| 44 new B().bar(); | 46 new B().bar(); |
| 45 Expect.equals(1, reachedAfoo.value); | 47 Expect.equals(1, reachedAfoo.value); |
| 46 } | 48 } |
| OLD | NEW |