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

Side by Side Diff: tests/language_strong/bailout_test.dart

Issue 2990933002: Migrate block 43. (Closed)
Patch Set: Update tests and status file. Created 3 years, 4 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
OLDNEW
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 import "package:expect/expect.dart";
6
7 // Test that a call to a bailout method in dart2js resolves to the
8 // right method.
9
10 var reachedAfoo = new C();
11
12 class A {
13 foo() {
14 // Using '++' makes sure there is a type guard.
15 reachedAfoo++;
16 }
17 }
18
19 class B extends A {
20 foo() {
21 reachedAfoo++;
22 // Call the Expect method after the type guard.
23 Expect.fail('Should never reach B.foo');
24 }
25
26 bar() {
27 super.foo();
28 }
29 }
30
31 class C {
32 int value = 0;
33 operator +(val) {
34 value += val;
35 return this;
36 }
37 }
38
39 main() {
40 // Using a loop makes sure the 'foo' methods will have an optimized
41 // version.
42 while (reachedAfoo.value != 0) {
43 new A().foo();
44 new B().foo();
45 }
46 new B().bar();
47 Expect.equals(1, reachedAfoo.value);
48 }
OLDNEW
« no previous file with comments | « tests/language_strong/bailout_container_type_test.dart ('k') | tests/language_strong/bind_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698