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

Side by Side Diff: tests/language_2/compile_time_constant3_test.dart

Issue 2994383002: Migrating block 50, first commit, after tool has run (Closed)
Patch Set: formatting Created 3 years, 4 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
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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"; 5 import "package:expect/expect.dart";
6 6
7 const x = 19.5; 7 const x = 19.5;
8 const y = 3.3; 8 const y = 3.3;
9 const g1 = x + y; 9 const g1 = x + y;
10 const g2 = x * y; 10 const g2 = x * y;
(...skipping 25 matching lines...) Expand all
36 Expect.equals(true, g9); 36 Expect.equals(true, g9);
37 Expect.equals(true, g10); 37 Expect.equals(true, g10);
38 Expect.equals(true, g11); 38 Expect.equals(true, g11);
39 Expect.equals(false, g12); 39 Expect.equals(false, g12);
40 Expect.equals(true, g13); 40 Expect.equals(true, g13);
41 Expect.equals(true, g14); 41 Expect.equals(true, g14);
42 Expect.equals(false, g15); 42 Expect.equals(false, g15);
43 Expect.equals(78.5590909090909, g16); 43 Expect.equals(78.5590909090909, g16);
44 Expect.equals(3.000000000000001, g17); 44 Expect.equals(3.000000000000001, g17);
45 } 45 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698