| OLD | NEW |
| 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 | 4 |
| 5 import "package:expect/expect.dart"; |
| 6 |
| 5 // This is a test for deoptimization infrastructure and to reproduce the | 7 // This is a test for deoptimization infrastructure and to reproduce the |
| 6 // failure from bug 5442338. | 8 // failure from bug 5442338. |
| 7 | 9 |
| 8 main() { | 10 main() { |
| 9 warmup(); | 11 warmup(); |
| 10 runTest(); | 12 runTest(); |
| 11 } | 13 } |
| 12 | 14 |
| 13 // Create a situation where method 'call' is optimized for using class A | 15 // Create a situation where method 'call' is optimized for using class A |
| 14 // when calling foo. | 16 // when calling foo. |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 | 49 |
| 48 | 50 |
| 49 class A { | 51 class A { |
| 50 foo() { return 1; } | 52 foo() { return 1; } |
| 51 } | 53 } |
| 52 | 54 |
| 53 | 55 |
| 54 class B { | 56 class B { |
| 55 foo() { return 2; } | 57 foo() { return 2; } |
| 56 } | 58 } |
| OLD | NEW |