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

Side by Side Diff: tests/language/state_mangling3_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/state_mangling2_test.dart ('k') | tests/language/state_mangling4_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 foo(state0) { 5 foo(state0) {
8 if (state0 == null) return 0; 6 if (state0 == null) return 0;
9 var sum = 0; 7 var sum = 0;
10 for (int i = 0; i < state0.length; i++) { 8 for (int i = 0; i < state0.length; i++) {
11 sum += state0[i]; 9 sum += state0[i];
12 } 10 }
13 state0 = inscrutableId(state0); 11 state0 = inscrutableId(state0);
14 for (int i = 0; i < state0.length; i++) { 12 for (int i = 0; i < state0.length; i++) {
15 sum += state0[i]; 13 sum += state0[i];
16 } 14 }
(...skipping 11 matching lines...) Expand all
28 int length = 3; 26 int length = 3;
29 operator [](i) => 1; 27 operator [](i) => 1;
30 } 28 }
31 29
32 main() { 30 main() {
33 Expect.equals(12, foo([1, 2, 3])); 31 Expect.equals(12, foo([1, 2, 3]));
34 if (inscrutableId(0) == 0) { 32 if (inscrutableId(0) == 0) {
35 Expect.equals(6, foo(new A())); 33 Expect.equals(6, foo(new A()));
36 } 34 }
37 } 35 }
OLDNEW
« no previous file with comments | « tests/language/state_mangling2_test.dart ('k') | tests/language/state_mangling4_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698