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

Side by Side Diff: tests/language/do_while2_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
« no previous file with comments | « tests/language/div_with_power_of_two_test.dart ('k') | tests/language/do_while3_test.dart » ('j') | 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) 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 a = 42; 5 var a = 42;
8 6
9 foo1() { 7 foo1() {
10 var i = 0; 8 var i = 0;
11 var saved; 9 var saved;
12 do { 10 do {
13 saved = i; 11 saved = i;
14 i = a; 12 i = a;
15 } while (i == saved); 13 } while (i == saved);
16 Expect.equals(0, saved); 14 Expect.equals(0, saved);
(...skipping 21 matching lines...) Expand all
38 } while (i != saved); 36 } while (i != saved);
39 Expect.equals(42, saved); 37 Expect.equals(42, saved);
40 Expect.equals(42, i); 38 Expect.equals(42, i);
41 } 39 }
42 40
43 main() { 41 main() {
44 foo1(); 42 foo1();
45 foo2(); 43 foo2();
46 foo3(); 44 foo3();
47 } 45 }
OLDNEW
« no previous file with comments | « tests/language/div_with_power_of_two_test.dart ('k') | tests/language/do_while3_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698