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

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

Issue 16398006: BREAKING CHANGE: Remove === and !== in the VM compiler (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 6 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"; 5 import "package:expect/expect.dart";
6 6
7 var sum = 0; 7 var sum = 0;
8 var foo = 0; 8 var foo = 0;
9 var bar = 1; 9 var bar = 1;
10 10
11 test() { 11 test() {
12 while (true) { 12 while (true) {
13 if (0 === foo) { 13 if (0 == foo) {
14 sum += 2; 14 sum += 2;
15 if (1 === bar) { 15 if (1 == bar) {
16 sum += 3; 16 sum += 3;
17 break; 17 break;
18 } 18 }
19 break; 19 break;
20 } 20 }
21 } 21 }
22 } 22 }
23 23
24 main() { 24 main() {
25 test(); 25 test();
26 Expect.equals(5, sum); 26 Expect.equals(5, sum);
27 } 27 }
OLDNEW
« no previous file with comments | « tests/language/compile_time_constant_e_test.dart ('k') | tests/language/typed_equality_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698