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

Side by Side Diff: tests/language/licm_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 var sum = 0; 5 var sum = 0;
8 var foo = 0; 6 var foo = 0;
9 var bar = 1; 7 var bar = 1;
10 8
11 test() { 9 test() {
12 while (true) { 10 while (true) {
13 if (0 === foo) { 11 if (0 === foo) {
14 sum += 2; 12 sum += 2;
15 if (1 === bar) { 13 if (1 === bar) {
16 sum += 3; 14 sum += 3;
17 break; 15 break;
18 } 16 }
19 break; 17 break;
20 } 18 }
21 } 19 }
22 } 20 }
23 21
24 main() { 22 main() {
25 test(); 23 test();
26 Expect.equals(5, sum); 24 Expect.equals(5, sum);
27 } 25 }
OLDNEW
« no previous file with comments | « tests/language/library_same_name_used_test.dart ('k') | tests/language/list_double_index_in_loop2_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698