OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 // VMOptions=--optimization-counter-threshold=10 | 5 // VMOptions=--optimization-counter-threshold=10 --no-background-compilation |
6 | 6 |
7 List<List> panels = [ | 7 List<List> panels = [ |
8 [6853.940039224797,6050.837897021371] | 8 [6853.940039224797,6050.837897021371] |
9 ,[6953.240039224797,6050.837897021371] | 9 ,[6953.240039224797,6050.837897021371] |
10 ,[7052.5400392247975,5885.237897021371] | 10 ,[7052.5400392247975,5885.237897021371] |
11 ,[7052.5400392247975,5719.637897021372] | 11 ,[7052.5400392247975,5719.637897021372] |
12 ,[7151.840039224798,5885.237897021371] | 12 ,[7151.840039224798,5885.237897021371] |
13 ,[7052.5400392247975,6050.837897021371] | 13 ,[7052.5400392247975,6050.837897021371] |
14 ,[7052.5400392247975,6216.43789702137] | 14 ,[7052.5400392247975,6216.43789702137] |
15 ,[7052.5400392247975,6382.03789702137] | 15 ,[7052.5400392247975,6382.03789702137] |
(...skipping 1352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1368 ,[2364.4759911280776,3842.7700224365044] | 1368 ,[2364.4759911280776,3842.7700224365044] |
1369 ]; | 1369 ]; |
1370 | 1370 |
1371 | 1371 |
1372 main() { | 1372 main() { |
1373 for (int i = 0; i < 20; i++) { | 1373 for (int i = 0; i < 20; i++) { |
1374 var y = panels.length; | 1374 var y = panels.length; |
1375 } | 1375 } |
1376 } | 1376 } |
1377 | 1377 |
OLD | NEW |