Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(210)

Side by Side Diff: tests/language/larger_implicit_getter_test.dart

Issue 1256543002: Fix analyzer warnings in test case. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698