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 // This is a test for deoptimization infrastructure and to reproduce the | 5 // This is a test for deoptimization infrastructure and to reproduce the |
6 // failure from bug 5442338. | 6 // failure from bug 5442338. |
7 | 7 |
8 main() { | 8 main() { |
9 warmup(); | 9 warmup(); |
10 runTest(); | 10 runTest(); |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 | 47 |
48 | 48 |
49 class A { | 49 class A { |
50 foo() { return 1; } | 50 foo() { return 1; } |
51 } | 51 } |
52 | 52 |
53 | 53 |
54 class B { | 54 class B { |
55 foo() { return 2; } | 55 foo() { return 2; } |
56 } | 56 } |
OLD | NEW |