Files
sdk/tests/language/fast_method_extraction_test.dart
T
Jacob Richman 2dcd56ef43 Format all tests.
There are far too many files here to review everyone carefully.
Spot checking most of the diffs look good as test code is generally written
with less care than application code so lots of ugly formatting get through.
If people notice files where the automated formatting bothers them feel free
to comment indicating file names and I'll move spaces within comments to make
the formatting cleaner and use comments to force block formatting as I have
done for other case where formatting looked bad.

BUG=
R=efortuna@google.com

Review-Url: https://codereview.chromium.org/2771453003 .
2017-04-17 14:53:02 -07:00

107 lines
1.7 KiB
Dart

// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// Test that fast method extraction returns correct closure.
// VMOptions=--optimization-counter-threshold=10 --no-use-osr --no-background-compilation
import "package:expect/expect.dart";
class A {
var f;
A(this.f);
foo() => 40 + f;
}
class B {
var f;
B(this.f);
foo() => -40 - f;
}
class X {}
class C<T> {
foo(v) => v is T;
}
class ChaA {
final magic;
ChaA(magic) : this.magic = magic;
foo() {
Expect.isTrue(this is ChaA);
Expect.equals("magicA", magic);
return "A";
}
bar() => foo;
}
class ChaB extends ChaA {
ChaB(magic) : super(magic);
foo() {
Expect.isTrue(this is ChaB);
Expect.equals("magicB", magic);
return "B";
}
}
mono(a) {
var f = a.foo;
return f();
}
poly(a) {
var f = a.foo;
return f();
}
types(a, b) {
var f = a.foo;
Expect.isTrue(f(b));
}
cha(a) {
var f = a.bar();
return f();
}
extractFromNull() {
var f = (null).toString;
Expect.equals("null", f());
}
main() {
var a = new A(2);
var b = new B(2);
for (var i = 0; i < 20; i++) {
Expect.equals(42, mono(a));
}
for (var i = 0; i < 20; i++) {
Expect.equals(42, poly(a));
Expect.equals(-42, poly(b));
}
var c = new C<X>();
var x = new X();
for (var i = 0; i < 20; i++) {
types(c, x);
}
var chaA = new ChaA("magicA");
for (var i = 0; i < 20; i++) {
Expect.equals("A", cha(chaA));
}
var chaB = new ChaB("magicB");
for (var i = 0; i < 20; i++) {
Expect.equals("B", cha(chaB));
}
for (var i = 0; i < 20; i++) {
extractFromNull();
}
}