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

Side by Side Diff: tests/compiler/dart2js_extra/constant_javascript_semantics_test.dart

Issue 12743005: Revert "Remove Expect from core library." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Reupload (first upload failed). Created 7 years, 9 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 | Annotate | Revision Log
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";
6
7 // Make sure we use JavaScript semantics when compiling compile-time constants. 5 // Make sure we use JavaScript semantics when compiling compile-time constants.
8 6
9 const x = 12345678901234567891; 7 const x = 12345678901234567891;
10 const y = 12345678901234567890; 8 const y = 12345678901234567890;
11 const z = x - y; 9 const z = x - y;
12 10
13 const a = 1.0; 11 const a = 1.0;
14 const b = a << 3; // This would not be valid with Dart semantics. 12 const b = a << 3; // This would not be valid with Dart semantics.
15 13
16 const c = -0.0; 14 const c = -0.0;
(...skipping 10 matching lines...) Expand all
27 Expect.equals(8, b); 25 Expect.equals(8, b);
28 Expect.equals(8, 1.0 << 3); // This would not be valid with Dart semantics. 26 Expect.equals(8, 1.0 << 3); // This would not be valid with Dart semantics.
29 Expect.isTrue(1 == 1.0); 27 Expect.isTrue(1 == 1.0);
30 Expect.equals(0, d); 28 Expect.equals(0, d);
31 Expect.equals(0, -0.0 << 1); // This would not be valid with Dart semantics. 29 Expect.equals(0, -0.0 << 1); // This would not be valid with Dart semantics.
32 // Make sure the 1 is not shifted into the 32 bit range. 30 // Make sure the 1 is not shifted into the 32 bit range.
33 Expect.equals(0, 0x100000000 >> 3); 31 Expect.equals(0, 0x100000000 >> 3);
34 // The dynamic int-check also allows -0.0. 32 // The dynamic int-check also allows -0.0.
35 Expect.isTrue((-0.0) is int); 33 Expect.isTrue((-0.0) is int);
36 } 34 }
OLDNEW
« no previous file with comments | « tests/compiler/dart2js_extra/constant_javascript_semantics3_test.dart ('k') | tests/compiler/dart2js_extra/do_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698