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

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

Issue 12212016: Remove Expect from core library. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add deprecation comment for ExpectException and revert one test. Created 7 years, 8 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/bailout3_test.dart ('k') | tests/language/bailout5_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
5 // Test that dart2s computes the right bailout environment in presence 7 // Test that dart2s computes the right bailout environment in presence
6 // of nested loops. 8 // of nested loops.
7 9
8 class A { 10 class A {
9 operator[] (index) => 42; 11 operator[] (index) => 42;
10 } 12 }
11 13
12 var a = new A(); 14 var a = new A();
13 var b = new List(4); 15 var b = new List(4);
14 int count = 0; 16 int count = 0;
15 17
16 main() { 18 main() {
17 // Make the method recursive to make sure it gets an optimized 19 // Make the method recursive to make sure it gets an optimized
18 // version. 20 // version.
19 if (b[0] != null) main(); 21 if (b[0] != null) main();
20 22
21 for (int i = 0; i < 2; i++) { 23 for (int i = 0; i < 2; i++) {
22 for (int j = 0; j < 2; j++) { 24 for (int j = 0; j < 2; j++) {
23 for (int k = 0; k < 2; k++) { 25 for (int k = 0; k < 2; k++) {
24 Expect.equals(42, a[i + j + k]); 26 Expect.equals(42, a[i + j + k]);
25 count++; 27 count++;
26 } 28 }
27 } 29 }
28 } 30 }
29 Expect.equals(8, count); 31 Expect.equals(8, count);
30 } 32 }
OLDNEW
« no previous file with comments | « tests/language/bailout3_test.dart ('k') | tests/language/bailout5_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698