| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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 compilation of large implicit getters. | 4 // Dart test program for testing compilation of large implicit getters. |
| 5 | 5 |
| 6 import 'package:expect/expect.dart'; | 6 import 'package:expect/expect.dart'; |
| 7 | 7 |
| 8 List<List> panels = [ | 8 List<List> panels = [ |
| 9 [6853.940039224797,6050.837897021371], | 9 [6853.940039224797,6050.837897021371], |
| 10 [6953.240039224797,6050.837897021371], | 10 [6953.240039224797,6050.837897021371], |
| (...skipping 4073 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4084 [2165.875991128078,3842.7700224365044], | 4084 [2165.875991128078,3842.7700224365044], |
| 4085 [2265.175991128078,4008.3700224365043], | 4085 [2265.175991128078,4008.3700224365043], |
| 4086 [2364.4759911280776,4008.3700224365043], | 4086 [2364.4759911280776,4008.3700224365043], |
| 4087 [2265.175991128078,3842.7700224365044], | 4087 [2265.175991128078,3842.7700224365044], |
| 4088 [2364.4759911280776,3677.1700224365045], | 4088 [2364.4759911280776,3677.1700224365045], |
| 4089 [2463.7759911280773,3842.7700224365044], | 4089 [2463.7759911280773,3842.7700224365044], |
| 4090 [2463.7759911280773,4008.3700224365043], | 4090 [2463.7759911280773,4008.3700224365043], |
| 4091 [2364.4759911280776,3842.7700224365044] | 4091 [2364.4759911280776,3842.7700224365044] |
| 4092 ]; | 4092 ]; |
| 4093 | 4093 |
| 4094 @AssumeDynamic | 4094 @AssumeDynamic() |
| 4095 @NoInline | 4095 @NoInline() |
| 4096 confuse(x) => x; | 4096 confuse(x) => x; |
| 4097 | 4097 |
| 4098 main() { | 4098 main() { |
| 4099 print(confuse(panels).length); | 4099 print(confuse(panels).length); |
| 4100 } | 4100 } |
| OLD | NEW |