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

Side by Side Diff: tests/language/bailout_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/bailout7_test.dart ('k') | tests/language/bind_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 a call to a bailout method in dart2js resolves to the 7 // Test that a call to a bailout method in dart2js resolves to the
6 // right method. 8 // right method.
7 9
8 var reachedAfoo = new C(); 10 var reachedAfoo = new C();
9 11
10 class A { 12 class A {
11 foo() { 13 foo() {
12 // Using '++' makes sure there is a type guard. 14 // Using '++' makes sure there is a type guard.
13 reachedAfoo++; 15 reachedAfoo++;
14 } 16 }
(...skipping 22 matching lines...) Expand all
37 main() { 39 main() {
38 // Using a loop makes sure the 'foo' methods will have an optimized 40 // Using a loop makes sure the 'foo' methods will have an optimized
39 // version. 41 // version.
40 while (reachedAfoo.value != 0) { 42 while (reachedAfoo.value != 0) {
41 new A().foo(); 43 new A().foo();
42 new B().foo(); 44 new B().foo();
43 } 45 }
44 new B().bar(); 46 new B().bar();
45 Expect.equals(1, reachedAfoo.value); 47 Expect.equals(1, reachedAfoo.value);
46 } 48 }
OLDNEW
« no previous file with comments | « tests/language/bailout7_test.dart ('k') | tests/language/bind_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698