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

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