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

Unified Diff: tests/language_2/function_type/function_type47_test.dart

Issue 2987133002: Update the function_type tests for Dart 2.0. (Closed)
Patch Set: Fix 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 side-by-side diff with in-line comments
Download patch
Index: tests/language_2/function_type/function_type47_test.dart
diff --git a/tests/language/function_type/function_type47_test.dart b/tests/language_2/function_type/function_type47_test.dart
similarity index 67%
rename from tests/language/function_type/function_type47_test.dart
rename to tests/language_2/function_type/function_type47_test.dart
index c86205abafac4186556ca2d9abb335403548dff3..c4be334556d219e496b50ac72f93e7b5dc80ce7e 100644
--- a/tests/language/function_type/function_type47_test.dart
+++ b/tests/language_2/function_type/function_type47_test.dart
@@ -201,74 +201,71 @@ class U47<T> {
/// int Function(int y, [List<T> x])
void testF0() {
- Expect.isTrue(f0 is F0);
- Expect.isTrue(confuse(f0) is F0);
+ Expect.isTrue(f0 is F0<int>);
+ Expect.isTrue(confuse(f0) is F0<int>);
// In checked mode, verifies the type.
int Function(int y, [List<T> x]) l0;
// The static function f0 sets `T` to `int`.
- if (!tIsBool) {
+ if (tIsInt) {
x0 = f0 as dynamic;
l0 = f0 as dynamic;
x0 = confuse(f0);
l0 = confuse(f0);
}
- Expect.isTrue(m0 is F0);
+ Expect.isTrue(m0 is F0<T>);
Expect.isTrue(m0 is int Function(int y, [List<T> x]));
- Expect.isTrue(confuse(m0) is F0);
+ Expect.isTrue(confuse(m0) is F0<T>);
// In checked mode, verifies the type.
x0 = m0;
l0 = m0;
x0 = confuse(m0);
l0 = confuse(m0);
- if (!tIsBool) {
- Expect.isTrue(f0 is F0<int>);
- Expect.isFalse(f0 is F0<bool>);
- Expect.isTrue(confuse(f0) is F0<int>);
- Expect.isFalse(confuse(f0) is F0<bool>);
- Expect.equals(tIsDynamic, m0 is F0<bool>);
- Expect.equals(tIsDynamic, confuse(m0) is F0<bool>);
- } else {
- if (typeAssertionsEnabled) {
- Expect.throws(() {
- x0 = (f0 as dynamic);
- });
- Expect.throws(() {
- x0 = confuse(f0);
- });
- int Function(int y, [List<T> x]) l0;
- Expect.throws(() {
- l0 = (f0 as dynamic);
- });
- Expect.throws(() {
- l0 = confuse(f0);
- });
- }
- int Function(int y, [List<T> x]) l0 = m0;
- // In checked mode, verifies the type.
- x0 = m0;
- x0 = confuse(m0);
+ // The static function has its T always set to int.
+ Expect.isTrue(f0 is F0<int>);
+ Expect.isFalse(f0 is F0<bool>);
+ Expect.isTrue(confuse(f0) is F0<int>);
+ Expect.isFalse(confuse(f0) is F0<bool>);
+ if (tIsBool) {
+ Expect.throws(() {
+ x0 = (f0 as dynamic);
+ });
+ Expect.throws(() {
+ x0 = confuse(f0);
+ });
+ Expect.throws(() {
+ l0 = (f0 as dynamic);
+ });
+ Expect.throws(() {
+ l0 = confuse(f0);
+ });
+ }
+ if (tIsInt || tIsBool) {
+ Expect.equals(tIsInt, m0 is F0<int>);
+ Expect.equals(tIsBool, m0 is F0<bool>);
+ Expect.equals(tIsInt, confuse(m0) is F0<int>);
+ Expect.equals(tIsBool, confuse(m0) is F0<bool>);
}
}
/// List<Function> Function(int x0, [core.List<core.int> x])
void testF1() {
- Expect.isTrue(f1 is F1);
- Expect.isTrue(confuse(f1) is F1);
+ Expect.isTrue(f1 is F1<int>);
+ Expect.isTrue(confuse(f1) is F1<int>);
// In checked mode, verifies the type.
List<Function> Function(int x0, [core.List<core.int> x]) l1;
// The static function f1 sets `T` to `int`.
- if (!tIsBool) {
+ if (tIsInt) {
x1 = f1 as dynamic;
l1 = f1 as dynamic;
x1 = confuse(f1);
l1 = confuse(f1);
}
- Expect.isTrue(m1 is F1);
+ Expect.isTrue(m1 is F1<T>);
Expect
.isTrue(m1 is List<Function> Function(int x0, [core.List<core.int> x]));
- Expect.isTrue(confuse(m1) is F1);
+ Expect.isTrue(confuse(m1) is F1<T>);
// In checked mode, verifies the type.
x1 = m1;
l1 = m1;
@@ -278,73 +275,70 @@ class U47<T> {
/// List<T> Function([List<Function> x])
void testF2() {
- Expect.isTrue(f2 is F2);
- Expect.isTrue(confuse(f2) is F2);
+ Expect.isTrue(f2 is F2<int>);
+ Expect.isTrue(confuse(f2) is F2<int>);
// In checked mode, verifies the type.
List<T> Function([List<Function> x]) l2;
// The static function f2 sets `T` to `int`.
- if (!tIsBool) {
+ if (tIsInt) {
x2 = f2 as dynamic;
l2 = f2 as dynamic;
x2 = confuse(f2);
l2 = confuse(f2);
}
- Expect.isTrue(m2 is F2);
+ Expect.isTrue(m2 is F2<T>);
Expect.isTrue(m2 is List<T> Function([List<Function> x]));
- Expect.isTrue(confuse(m2) is F2);
+ Expect.isTrue(confuse(m2) is F2<T>);
// In checked mode, verifies the type.
x2 = m2;
l2 = m2;
x2 = confuse(m2);
l2 = confuse(m2);
- if (!tIsBool) {
- Expect.isTrue(f2 is F2<int>);
- Expect.isFalse(f2 is F2<bool>);
- Expect.isTrue(confuse(f2) is F2<int>);
- Expect.isFalse(confuse(f2) is F2<bool>);
- Expect.equals(tIsDynamic, m2 is F2<bool>);
- Expect.equals(tIsDynamic, confuse(m2) is F2<bool>);
- } else {
- if (typeAssertionsEnabled) {
- Expect.throws(() {
- x2 = (f2 as dynamic);
- });
- Expect.throws(() {
- x2 = confuse(f2);
- });
- List<T> Function([List<Function> x]) l2;
- Expect.throws(() {
- l2 = (f2 as dynamic);
- });
- Expect.throws(() {
- l2 = confuse(f2);
- });
- }
- List<T> Function([List<Function> x]) l2 = m2;
- // In checked mode, verifies the type.
- x2 = m2;
- x2 = confuse(m2);
+ // The static function has its T always set to int.
+ Expect.isTrue(f2 is F2<int>);
+ Expect.isFalse(f2 is F2<bool>);
+ Expect.isTrue(confuse(f2) is F2<int>);
+ Expect.isFalse(confuse(f2) is F2<bool>);
+ if (tIsBool) {
+ Expect.throws(() {
+ x2 = (f2 as dynamic);
+ });
+ Expect.throws(() {
+ x2 = confuse(f2);
+ });
+ Expect.throws(() {
+ l2 = (f2 as dynamic);
+ });
+ Expect.throws(() {
+ l2 = confuse(f2);
+ });
+ }
+ if (tIsInt || tIsBool) {
+ Expect.equals(tIsInt, m2 is F2<int>);
+ Expect.equals(tIsBool, m2 is F2<bool>);
+ Expect.equals(tIsInt, confuse(m2) is F2<int>);
+ Expect.equals(tIsBool, confuse(m2) is F2<bool>);
}
}
/// void Function(Function x)
void testF3() {
- Expect.isTrue(f3 is F3);
- Expect.isTrue(confuse(f3) is F3);
+ Expect.isTrue(f3 is F3<int>);
+ Expect.isTrue(confuse(f3) is F3<int>);
// In checked mode, verifies the type.
void Function(Function x) l3;
// The static function f3 sets `T` to `int`.
- if (!tIsBool) {
+ if (tIsInt) {
x3 = f3 as dynamic;
l3 = f3 as dynamic;
x3 = confuse(f3);
l3 = confuse(f3);
}
- Expect.isTrue(m3 is F3);
+ Expect.isTrue(m3 is F3<T>);
Expect.isTrue(m3 is void Function(Function x));
- Expect.isTrue(confuse(m3) is F3);
+ Expect.isTrue(confuse(m3) is F3<T>);
// In checked mode, verifies the type.
x3 = m3;
l3 = m3;
@@ -354,21 +348,21 @@ class U47<T> {
/// A Function<A>(List<A> x)
void testF4() {
- Expect.isTrue(f4 is F4);
- Expect.isTrue(confuse(f4) is F4);
+ Expect.isTrue(f4 is F4<int>);
+ Expect.isTrue(confuse(f4) is F4<int>);
// In checked mode, verifies the type.
A Function<A>(List<A> x) l4;
// The static function f4 sets `T` to `int`.
- if (!tIsBool) {
+ if (tIsInt) {
x4 = f4 as dynamic;
l4 = f4 as dynamic;
x4 = confuse(f4);
l4 = confuse(f4);
}
- Expect.isTrue(m4 is F4);
+ Expect.isTrue(m4 is F4<T>);
Expect.isTrue(m4 is A Function<A>(List<A> x));
- Expect.isTrue(confuse(m4) is F4);
+ Expect.isTrue(confuse(m4) is F4<T>);
// In checked mode, verifies the type.
x4 = m4;
l4 = m4;
@@ -378,22 +372,22 @@ class U47<T> {
/// int Function(int x1, {Function x}) Function<B extends core.int>(int x)
void testF5() {
- Expect.isTrue(f5 is F5);
- Expect.isTrue(confuse(f5) is F5);
+ Expect.isTrue(f5 is F5<int>);
+ Expect.isTrue(confuse(f5) is F5<int>);
// In checked mode, verifies the type.
int Function(int x1, {Function x}) Function<B extends core.int>(int x) l5;
// The static function f5 sets `T` to `int`.
- if (!tIsBool) {
+ if (tIsInt) {
x5 = f5 as dynamic;
l5 = f5 as dynamic;
x5 = confuse(f5);
l5 = confuse(f5);
}
- Expect.isTrue(m5 is F5);
+ Expect.isTrue(m5 is F5<T>);
Expect.isTrue(m5 is int Function(int x1, {Function x})
Function<B extends core.int>(int x));
- Expect.isTrue(confuse(m5) is F5);
+ Expect.isTrue(confuse(m5) is F5<T>);
// In checked mode, verifies the type.
x5 = m5;
l5 = m5;
@@ -403,76 +397,73 @@ class U47<T> {
/// int Function([List<T> x]) Function<B extends core.int>(int x)
void testF6() {
- Expect.isTrue(f6 is F6);
- Expect.isTrue(confuse(f6) is F6);
+ Expect.isTrue(f6 is F6<int>);
+ Expect.isTrue(confuse(f6) is F6<int>);
// In checked mode, verifies the type.
int Function([List<T> x]) Function<B extends core.int>(int x) l6;
// The static function f6 sets `T` to `int`.
- if (!tIsBool) {
+ if (tIsInt) {
x6 = f6 as dynamic;
l6 = f6 as dynamic;
x6 = confuse(f6);
l6 = confuse(f6);
}
- Expect.isTrue(m6 is F6);
+ Expect.isTrue(m6 is F6<T>);
Expect.isTrue(
m6 is int Function([List<T> x]) Function<B extends core.int>(int x));
- Expect.isTrue(confuse(m6) is F6);
+ Expect.isTrue(confuse(m6) is F6<T>);
// In checked mode, verifies the type.
x6 = m6;
l6 = m6;
x6 = confuse(m6);
l6 = confuse(m6);
- if (!tIsBool) {
- Expect.isTrue(f6 is F6<int>);
- Expect.isFalse(f6 is F6<bool>);
- Expect.isTrue(confuse(f6) is F6<int>);
- Expect.isFalse(confuse(f6) is F6<bool>);
- Expect.equals(tIsDynamic, m6 is F6<bool>);
- Expect.equals(tIsDynamic, confuse(m6) is F6<bool>);
- } else {
- if (typeAssertionsEnabled) {
- Expect.throws(() {
- x6 = (f6 as dynamic);
- });
- Expect.throws(() {
- x6 = confuse(f6);
- });
- int Function([List<T> x]) Function<B extends core.int>(int x) l6;
- Expect.throws(() {
- l6 = (f6 as dynamic);
- });
- Expect.throws(() {
- l6 = confuse(f6);
- });
- }
- int Function([List<T> x]) Function<B extends core.int>(int x) l6 = m6;
- // In checked mode, verifies the type.
- x6 = m6;
- x6 = confuse(m6);
+ // The static function has its T always set to int.
+ Expect.isTrue(f6 is F6<int>);
+ Expect.isFalse(f6 is F6<bool>);
+ Expect.isTrue(confuse(f6) is F6<int>);
+ Expect.isFalse(confuse(f6) is F6<bool>);
+ if (tIsBool) {
+ Expect.throws(() {
+ x6 = (f6 as dynamic);
+ });
+ Expect.throws(() {
+ x6 = confuse(f6);
+ });
+ Expect.throws(() {
+ l6 = (f6 as dynamic);
+ });
+ Expect.throws(() {
+ l6 = confuse(f6);
+ });
+ }
+ if (tIsInt || tIsBool) {
+ Expect.equals(tIsInt, m6 is F6<int>);
+ Expect.equals(tIsBool, m6 is F6<bool>);
+ Expect.equals(tIsInt, confuse(m6) is F6<int>);
+ Expect.equals(tIsBool, confuse(m6) is F6<bool>);
}
}
/// Function Function(int y, [Function x]) Function<B extends core.int>(int x)
void testF7() {
- Expect.isTrue(f7 is F7);
- Expect.isTrue(confuse(f7) is F7);
+ Expect.isTrue(f7 is F7<int>);
+ Expect.isTrue(confuse(f7) is F7<int>);
// In checked mode, verifies the type.
Function Function(int y, [Function x]) Function<B extends core.int>(int x)
l7;
// The static function f7 sets `T` to `int`.
- if (!tIsBool) {
+ if (tIsInt) {
x7 = f7 as dynamic;
l7 = f7 as dynamic;
x7 = confuse(f7);
l7 = confuse(f7);
}
- Expect.isTrue(m7 is F7);
+ Expect.isTrue(m7 is F7<T>);
Expect.isTrue(m7 is Function Function(int y, [Function x])
Function<B extends core.int>(int x));
- Expect.isTrue(confuse(m7) is F7);
+ Expect.isTrue(confuse(m7) is F7<T>);
// In checked mode, verifies the type.
x7 = m7;
l7 = m7;
@@ -482,23 +473,23 @@ class U47<T> {
/// Function Function(int x2, [core.List<core.int> x3]) Function<B extends core.int>(int x)
void testF8() {
- Expect.isTrue(f8 is F8);
- Expect.isTrue(confuse(f8) is F8);
+ Expect.isTrue(f8 is F8<int>);
+ Expect.isTrue(confuse(f8) is F8<int>);
// In checked mode, verifies the type.
Function Function(int x2, [core.List<core.int> x3])
Function<B extends core.int>(int x) l8;
// The static function f8 sets `T` to `int`.
- if (!tIsBool) {
+ if (tIsInt) {
x8 = f8 as dynamic;
l8 = f8 as dynamic;
x8 = confuse(f8);
l8 = confuse(f8);
}
- Expect.isTrue(m8 is F8);
+ Expect.isTrue(m8 is F8<T>);
Expect.isTrue(m8 is Function Function(int x2, [core.List<core.int> x3])
Function<B extends core.int>(int x));
- Expect.isTrue(confuse(m8) is F8);
+ Expect.isTrue(confuse(m8) is F8<T>);
// In checked mode, verifies the type.
x8 = m8;
l8 = m8;
@@ -508,22 +499,22 @@ class U47<T> {
/// List<Function> Function({int x}) Function<B extends core.int>(int x)
void testF9() {
- Expect.isTrue(f9 is F9);
- Expect.isTrue(confuse(f9) is F9);
+ Expect.isTrue(f9 is F9<int>);
+ Expect.isTrue(confuse(f9) is F9<int>);
// In checked mode, verifies the type.
List<Function> Function({int x}) Function<B extends core.int>(int x) l9;
// The static function f9 sets `T` to `int`.
- if (!tIsBool) {
+ if (tIsInt) {
x9 = f9 as dynamic;
l9 = f9 as dynamic;
x9 = confuse(f9);
l9 = confuse(f9);
}
- Expect.isTrue(m9 is F9);
+ Expect.isTrue(m9 is F9<T>);
Expect.isTrue(m9 is List<Function> Function({int x})
Function<B extends core.int>(int x));
- Expect.isTrue(confuse(m9) is F9);
+ Expect.isTrue(confuse(m9) is F9<T>);
// In checked mode, verifies the type.
x9 = m9;
l9 = m9;
@@ -533,23 +524,23 @@ class U47<T> {
/// List<Function> Function(core.List<core.int> x) Function<B extends core.int>(int x)
void testF10() {
- Expect.isTrue(f10 is F10);
- Expect.isTrue(confuse(f10) is F10);
+ Expect.isTrue(f10 is F10<int>);
+ Expect.isTrue(confuse(f10) is F10<int>);
// In checked mode, verifies the type.
List<Function> Function(core.List<core.int> x) Function<B extends core.int>(
int x) l10;
// The static function f10 sets `T` to `int`.
- if (!tIsBool) {
+ if (tIsInt) {
x10 = f10 as dynamic;
l10 = f10 as dynamic;
x10 = confuse(f10);
l10 = confuse(f10);
}
- Expect.isTrue(m10 is F10);
+ Expect.isTrue(m10 is F10<T>);
Expect.isTrue(m10 is List<Function> Function(core.List<core.int> x)
Function<B extends core.int>(int x));
- Expect.isTrue(confuse(m10) is F10);
+ Expect.isTrue(confuse(m10) is F10<T>);
// In checked mode, verifies the type.
x10 = m10;
l10 = m10;
@@ -559,23 +550,23 @@ class U47<T> {
/// core.List<core.int> Function(int x1, [int x]) Function<B extends core.int>(int x)
void testF11() {
- Expect.isTrue(f11 is F11);
- Expect.isTrue(confuse(f11) is F11);
+ Expect.isTrue(f11 is F11<int>);
+ Expect.isTrue(confuse(f11) is F11<int>);
// In checked mode, verifies the type.
core.List<core.int> Function(int x1, [int x]) Function<B extends core.int>(
int x) l11;
// The static function f11 sets `T` to `int`.
- if (!tIsBool) {
+ if (tIsInt) {
x11 = f11 as dynamic;
l11 = f11 as dynamic;
x11 = confuse(f11);
l11 = confuse(f11);
}
- Expect.isTrue(m11 is F11);
+ Expect.isTrue(m11 is F11<T>);
Expect.isTrue(m11 is core.List<core.int> Function(int x1, [int x])
Function<B extends core.int>(int x));
- Expect.isTrue(confuse(m11) is F11);
+ Expect.isTrue(confuse(m11) is F11<T>);
// In checked mode, verifies the type.
x11 = m11;
l11 = m11;
@@ -585,23 +576,23 @@ class U47<T> {
/// core.List<core.int> Function([List<Function> x1]) Function<B extends core.int>(int x)
void testF12() {
- Expect.isTrue(f12 is F12);
- Expect.isTrue(confuse(f12) is F12);
+ Expect.isTrue(f12 is F12<int>);
+ Expect.isTrue(confuse(f12) is F12<int>);
// In checked mode, verifies the type.
core.List<core.int> Function([List<Function> x1])
Function<B extends core.int>(int x) l12;
// The static function f12 sets `T` to `int`.
- if (!tIsBool) {
+ if (tIsInt) {
x12 = f12 as dynamic;
l12 = f12 as dynamic;
x12 = confuse(f12);
l12 = confuse(f12);
}
- Expect.isTrue(m12 is F12);
+ Expect.isTrue(m12 is F12<T>);
Expect.isTrue(m12 is core.List<core.int> Function([List<Function> x1])
Function<B extends core.int>(int x));
- Expect.isTrue(confuse(m12) is F12);
+ Expect.isTrue(confuse(m12) is F12<T>);
// In checked mode, verifies the type.
x12 = m12;
l12 = m12;
@@ -611,190 +602,175 @@ class U47<T> {
/// core.List<core.int> Function({List<T> x}) Function<B extends core.int>(int x)
void testF13() {
- Expect.isTrue(f13 is F13);
- Expect.isTrue(confuse(f13) is F13);
+ Expect.isTrue(f13 is F13<int>);
+ Expect.isTrue(confuse(f13) is F13<int>);
// In checked mode, verifies the type.
core.List<core.int> Function({List<T> x}) Function<B extends core.int>(
int x) l13;
// The static function f13 sets `T` to `int`.
- if (!tIsBool) {
+ if (tIsInt) {
x13 = f13 as dynamic;
l13 = f13 as dynamic;
x13 = confuse(f13);
l13 = confuse(f13);
}
- Expect.isTrue(m13 is F13);
+ Expect.isTrue(m13 is F13<T>);
Expect.isTrue(m13 is core.List<core.int> Function({List<T> x})
Function<B extends core.int>(int x));
- Expect.isTrue(confuse(m13) is F13);
+ Expect.isTrue(confuse(m13) is F13<T>);
// In checked mode, verifies the type.
x13 = m13;
l13 = m13;
x13 = confuse(m13);
l13 = confuse(m13);
- if (!tIsBool) {
- Expect.isTrue(f13 is F13<int>);
- Expect.isFalse(f13 is F13<bool>);
- Expect.isTrue(confuse(f13) is F13<int>);
- Expect.isFalse(confuse(f13) is F13<bool>);
- Expect.equals(tIsDynamic, m13 is F13<bool>);
- Expect.equals(tIsDynamic, confuse(m13) is F13<bool>);
- } else {
- if (typeAssertionsEnabled) {
- Expect.throws(() {
- x13 = (f13 as dynamic);
- });
- Expect.throws(() {
- x13 = confuse(f13);
- });
- core.List<core.int> Function({List<T> x}) Function<B extends core.int>(
- int x) l13;
- Expect.throws(() {
- l13 = (f13 as dynamic);
- });
- Expect.throws(() {
- l13 = confuse(f13);
- });
- }
- core.List<core.int> Function({List<T> x}) Function<B extends core.int>(
- int x) l13 = m13;
- // In checked mode, verifies the type.
- x13 = m13;
- x13 = confuse(m13);
+ // The static function has its T always set to int.
+ Expect.isTrue(f13 is F13<int>);
+ Expect.isFalse(f13 is F13<bool>);
+ Expect.isTrue(confuse(f13) is F13<int>);
+ Expect.isFalse(confuse(f13) is F13<bool>);
+ if (tIsBool) {
+ Expect.throws(() {
+ x13 = (f13 as dynamic);
+ });
+ Expect.throws(() {
+ x13 = confuse(f13);
+ });
+ Expect.throws(() {
+ l13 = (f13 as dynamic);
+ });
+ Expect.throws(() {
+ l13 = confuse(f13);
+ });
+ }
+ if (tIsInt || tIsBool) {
+ Expect.equals(tIsInt, m13 is F13<int>);
+ Expect.equals(tIsBool, m13 is F13<bool>);
+ Expect.equals(tIsInt, confuse(m13) is F13<int>);
+ Expect.equals(tIsBool, confuse(m13) is F13<bool>);
}
}
/// List<T> Function(int y, {Function x}) Function<B extends core.int>(int x)
void testF14() {
- Expect.isTrue(f14 is F14);
- Expect.isTrue(confuse(f14) is F14);
+ Expect.isTrue(f14 is F14<int>);
+ Expect.isTrue(confuse(f14) is F14<int>);
// In checked mode, verifies the type.
List<T> Function(int y, {Function x}) Function<B extends core.int>(int x)
l14;
// The static function f14 sets `T` to `int`.
- if (!tIsBool) {
+ if (tIsInt) {
x14 = f14 as dynamic;
l14 = f14 as dynamic;
x14 = confuse(f14);
l14 = confuse(f14);
}
- Expect.isTrue(m14 is F14);
+ Expect.isTrue(m14 is F14<T>);
Expect.isTrue(m14 is List<T> Function(int y, {Function x})
Function<B extends core.int>(int x));
- Expect.isTrue(confuse(m14) is F14);
+ Expect.isTrue(confuse(m14) is F14<T>);
// In checked mode, verifies the type.
x14 = m14;
l14 = m14;
x14 = confuse(m14);
l14 = confuse(m14);
- if (!tIsBool) {
- Expect.isTrue(f14 is F14<int>);
- Expect.isFalse(f14 is F14<bool>);
- Expect.isTrue(confuse(f14) is F14<int>);
- Expect.isFalse(confuse(f14) is F14<bool>);
- Expect.equals(tIsDynamic, m14 is F14<bool>);
- Expect.equals(tIsDynamic, confuse(m14) is F14<bool>);
- } else {
- if (typeAssertionsEnabled) {
- Expect.throws(() {
- x14 = (f14 as dynamic);
- });
- Expect.throws(() {
- x14 = confuse(f14);
- });
- List<T> Function(int y, {Function x}) Function<B extends core.int>(
- int x) l14;
- Expect.throws(() {
- l14 = (f14 as dynamic);
- });
- Expect.throws(() {
- l14 = confuse(f14);
- });
- }
- List<T> Function(int y, {Function x}) Function<B extends core.int>(int x)
- l14 = m14;
- // In checked mode, verifies the type.
- x14 = m14;
- x14 = confuse(m14);
+ // The static function has its T always set to int.
+ Expect.isTrue(f14 is F14<int>);
+ Expect.isFalse(f14 is F14<bool>);
+ Expect.isTrue(confuse(f14) is F14<int>);
+ Expect.isFalse(confuse(f14) is F14<bool>);
+ if (tIsBool) {
+ Expect.throws(() {
+ x14 = (f14 as dynamic);
+ });
+ Expect.throws(() {
+ x14 = confuse(f14);
+ });
+ Expect.throws(() {
+ l14 = (f14 as dynamic);
+ });
+ Expect.throws(() {
+ l14 = confuse(f14);
+ });
+ }
+ if (tIsInt || tIsBool) {
+ Expect.equals(tIsInt, m14 is F14<int>);
+ Expect.equals(tIsBool, m14 is F14<bool>);
+ Expect.equals(tIsInt, confuse(m14) is F14<int>);
+ Expect.equals(tIsBool, confuse(m14) is F14<bool>);
}
}
/// List<T> Function(int x1, [List<T> x]) Function<B extends core.int>(int x)
void testF15() {
- Expect.isTrue(f15 is F15);
- Expect.isTrue(confuse(f15) is F15);
+ Expect.isTrue(f15 is F15<int>);
+ Expect.isTrue(confuse(f15) is F15<int>);
// In checked mode, verifies the type.
List<T> Function(int x1, [List<T> x]) Function<B extends core.int>(int x)
l15;
// The static function f15 sets `T` to `int`.
- if (!tIsBool) {
+ if (tIsInt) {
x15 = f15 as dynamic;
l15 = f15 as dynamic;
x15 = confuse(f15);
l15 = confuse(f15);
}
- Expect.isTrue(m15 is F15);
+ Expect.isTrue(m15 is F15<T>);
Expect.isTrue(m15 is List<T> Function(int x1, [List<T> x])
Function<B extends core.int>(int x));
- Expect.isTrue(confuse(m15) is F15);
+ Expect.isTrue(confuse(m15) is F15<T>);
// In checked mode, verifies the type.
x15 = m15;
l15 = m15;
x15 = confuse(m15);
l15 = confuse(m15);
- if (!tIsBool) {
- Expect.isTrue(f15 is F15<int>);
- Expect.isFalse(f15 is F15<bool>);
- Expect.isTrue(confuse(f15) is F15<int>);
- Expect.isFalse(confuse(f15) is F15<bool>);
- Expect.equals(tIsDynamic, m15 is F15<bool>);
- Expect.equals(tIsDynamic, confuse(m15) is F15<bool>);
- } else {
- if (typeAssertionsEnabled) {
- Expect.throws(() {
- x15 = (f15 as dynamic);
- });
- Expect.throws(() {
- x15 = confuse(f15);
- });
- List<T> Function(int x1, [List<T> x]) Function<B extends core.int>(
- int x) l15;
- Expect.throws(() {
- l15 = (f15 as dynamic);
- });
- Expect.throws(() {
- l15 = confuse(f15);
- });
- }
- List<T> Function(int x1, [List<T> x]) Function<B extends core.int>(int x)
- l15 = m15;
- // In checked mode, verifies the type.
- x15 = m15;
- x15 = confuse(m15);
+ // The static function has its T always set to int.
+ Expect.isTrue(f15 is F15<int>);
+ Expect.isFalse(f15 is F15<bool>);
+ Expect.isTrue(confuse(f15) is F15<int>);
+ Expect.isFalse(confuse(f15) is F15<bool>);
+ if (tIsBool) {
+ Expect.throws(() {
+ x15 = (f15 as dynamic);
+ });
+ Expect.throws(() {
+ x15 = confuse(f15);
+ });
+ Expect.throws(() {
+ l15 = (f15 as dynamic);
+ });
+ Expect.throws(() {
+ l15 = confuse(f15);
+ });
+ }
+ if (tIsInt || tIsBool) {
+ Expect.equals(tIsInt, m15 is F15<int>);
+ Expect.equals(tIsBool, m15 is F15<bool>);
+ Expect.equals(tIsInt, confuse(m15) is F15<int>);
+ Expect.equals(tIsBool, confuse(m15) is F15<bool>);
}
}
/// Function(Function x1) Function<B extends core.int>(int x)
void testF16() {
- Expect.isTrue(f16 is F16);
- Expect.isTrue(confuse(f16) is F16);
+ Expect.isTrue(f16 is F16<int>);
+ Expect.isTrue(confuse(f16) is F16<int>);
// In checked mode, verifies the type.
Function(Function x1) Function<B extends core.int>(int x) l16;
// The static function f16 sets `T` to `int`.
- if (!tIsBool) {
+ if (tIsInt) {
x16 = f16 as dynamic;
l16 = f16 as dynamic;
x16 = confuse(f16);
l16 = confuse(f16);
}
- Expect.isTrue(m16 is F16);
+ Expect.isTrue(m16 is F16<T>);
Expect.isTrue(
m16 is Function(Function x1) Function<B extends core.int>(int x));
- Expect.isTrue(confuse(m16) is F16);
+ Expect.isTrue(confuse(m16) is F16<T>);
// In checked mode, verifies the type.
x16 = m16;
l16 = m16;
@@ -804,23 +780,23 @@ class U47<T> {
/// Function(int x, [core.List<core.int> x1]) Function<B extends core.int>(int x)
void testF17() {
- Expect.isTrue(f17 is F17);
- Expect.isTrue(confuse(f17) is F17);
+ Expect.isTrue(f17 is F17<int>);
+ Expect.isTrue(confuse(f17) is F17<int>);
// In checked mode, verifies the type.
Function(int x, [core.List<core.int> x1]) Function<B extends core.int>(
int x) l17;
// The static function f17 sets `T` to `int`.
- if (!tIsBool) {
+ if (tIsInt) {
x17 = f17 as dynamic;
l17 = f17 as dynamic;
x17 = confuse(f17);
l17 = confuse(f17);
}
- Expect.isTrue(m17 is F17);
+ Expect.isTrue(m17 is F17<T>);
Expect.isTrue(m17 is Function(int x, [core.List<core.int> x1])
Function<B extends core.int>(int x));
- Expect.isTrue(confuse(m17) is F17);
+ Expect.isTrue(confuse(m17) is F17<T>);
// In checked mode, verifies the type.
x17 = m17;
l17 = m17;
@@ -830,22 +806,22 @@ class U47<T> {
/// void Function(int x1, {int x}) Function<B extends core.int>(int x)
void testF18() {
- Expect.isTrue(f18 is F18);
- Expect.isTrue(confuse(f18) is F18);
+ Expect.isTrue(f18 is F18<int>);
+ Expect.isTrue(confuse(f18) is F18<int>);
// In checked mode, verifies the type.
void Function(int x1, {int x}) Function<B extends core.int>(int x) l18;
// The static function f18 sets `T` to `int`.
- if (!tIsBool) {
+ if (tIsInt) {
x18 = f18 as dynamic;
l18 = f18 as dynamic;
x18 = confuse(f18);
l18 = confuse(f18);
}
- Expect.isTrue(m18 is F18);
+ Expect.isTrue(m18 is F18<T>);
Expect.isTrue(m18 is void Function(int x1, {int x})
Function<B extends core.int>(int x));
- Expect.isTrue(confuse(m18) is F18);
+ Expect.isTrue(confuse(m18) is F18<T>);
// In checked mode, verifies the type.
x18 = m18;
l18 = m18;
@@ -855,23 +831,23 @@ class U47<T> {
/// void Function([core.List<core.int> x]) Function<B extends core.int>(int x)
void testF19() {
- Expect.isTrue(f19 is F19);
- Expect.isTrue(confuse(f19) is F19);
+ Expect.isTrue(f19 is F19<int>);
+ Expect.isTrue(confuse(f19) is F19<int>);
// In checked mode, verifies the type.
void Function([core.List<core.int> x]) Function<B extends core.int>(int x)
l19;
// The static function f19 sets `T` to `int`.
- if (!tIsBool) {
+ if (tIsInt) {
x19 = f19 as dynamic;
l19 = f19 as dynamic;
x19 = confuse(f19);
l19 = confuse(f19);
}
- Expect.isTrue(m19 is F19);
+ Expect.isTrue(m19 is F19<T>);
Expect.isTrue(m19 is void Function([core.List<core.int> x])
Function<B extends core.int>(int x));
- Expect.isTrue(confuse(m19) is F19);
+ Expect.isTrue(confuse(m19) is F19<T>);
// In checked mode, verifies the type.
x19 = m19;
l19 = m19;
@@ -881,23 +857,23 @@ class U47<T> {
/// int Function<A>(core.List<core.int> x) Function<B extends core.int>(int x)
void testF20() {
- Expect.isTrue(f20 is F20);
- Expect.isTrue(confuse(f20) is F20);
+ Expect.isTrue(f20 is F20<int>);
+ Expect.isTrue(confuse(f20) is F20<int>);
// In checked mode, verifies the type.
int Function<A>(core.List<core.int> x) Function<B extends core.int>(int x)
l20;
// The static function f20 sets `T` to `int`.
- if (!tIsBool) {
+ if (tIsInt) {
x20 = f20 as dynamic;
l20 = f20 as dynamic;
x20 = confuse(f20);
l20 = confuse(f20);
}
- Expect.isTrue(m20 is F20);
+ Expect.isTrue(m20 is F20<T>);
Expect.isTrue(m20 is int Function<A>(core.List<core.int> x)
Function<B extends core.int>(int x));
- Expect.isTrue(confuse(m20) is F20);
+ Expect.isTrue(confuse(m20) is F20<T>);
// In checked mode, verifies the type.
x20 = m20;
l20 = m20;
@@ -907,77 +883,72 @@ class U47<T> {
/// core.List<core.int> Function<A>(List<T> x) Function<B extends core.int>(int x)
void testF21() {
- Expect.isTrue(f21 is F21);
- Expect.isTrue(confuse(f21) is F21);
+ Expect.isTrue(f21 is F21<int>);
+ Expect.isTrue(confuse(f21) is F21<int>);
// In checked mode, verifies the type.
core.List<core.int> Function<A>(List<T> x) Function<B extends core.int>(
int x) l21;
// The static function f21 sets `T` to `int`.
- if (!tIsBool) {
+ if (tIsInt) {
x21 = f21 as dynamic;
l21 = f21 as dynamic;
x21 = confuse(f21);
l21 = confuse(f21);
}
- Expect.isTrue(m21 is F21);
+ Expect.isTrue(m21 is F21<T>);
Expect.isTrue(m21 is core.List<core.int> Function<A>(List<T> x)
Function<B extends core.int>(int x));
- Expect.isTrue(confuse(m21) is F21);
+ Expect.isTrue(confuse(m21) is F21<T>);
// In checked mode, verifies the type.
x21 = m21;
l21 = m21;
x21 = confuse(m21);
l21 = confuse(m21);
- if (!tIsBool) {
- Expect.isTrue(f21 is F21<int>);
- Expect.isFalse(f21 is F21<bool>);
- Expect.isTrue(confuse(f21) is F21<int>);
- Expect.isFalse(confuse(f21) is F21<bool>);
- Expect.equals(tIsDynamic, m21 is F21<bool>);
- Expect.equals(tIsDynamic, confuse(m21) is F21<bool>);
- } else {
- if (typeAssertionsEnabled) {
- Expect.throws(() {
- x21 = (f21 as dynamic);
- });
- Expect.throws(() {
- x21 = confuse(f21);
- });
- core.List<core.int> Function<A>(List<T> x) Function<B extends core.int>(
- int x) l21;
- Expect.throws(() {
- l21 = (f21 as dynamic);
- });
- Expect.throws(() {
- l21 = confuse(f21);
- });
- }
- core.List<core.int> Function<A>(List<T> x) Function<B extends core.int>(
- int x) l21 = m21;
- // In checked mode, verifies the type.
- x21 = m21;
- x21 = confuse(m21);
+ // The static function has its T always set to int.
+ Expect.isTrue(f21 is F21<int>);
+ Expect.isFalse(f21 is F21<bool>);
+ Expect.isTrue(confuse(f21) is F21<int>);
+ Expect.isFalse(confuse(f21) is F21<bool>);
+ if (tIsBool) {
+ Expect.throws(() {
+ x21 = (f21 as dynamic);
+ });
+ Expect.throws(() {
+ x21 = confuse(f21);
+ });
+ Expect.throws(() {
+ l21 = (f21 as dynamic);
+ });
+ Expect.throws(() {
+ l21 = confuse(f21);
+ });
+ }
+ if (tIsInt || tIsBool) {
+ Expect.equals(tIsInt, m21 is F21<int>);
+ Expect.equals(tIsBool, m21 is F21<bool>);
+ Expect.equals(tIsInt, confuse(m21) is F21<int>);
+ Expect.equals(tIsBool, confuse(m21) is F21<bool>);
}
}
/// A Function<A>() Function<B extends core.int>(int x)
void testF22() {
- Expect.isTrue(f22 is F22);
- Expect.isTrue(confuse(f22) is F22);
+ Expect.isTrue(f22 is F22<int>);
+ Expect.isTrue(confuse(f22) is F22<int>);
// In checked mode, verifies the type.
A Function<A>() Function<B extends core.int>(int x) l22;
// The static function f22 sets `T` to `int`.
- if (!tIsBool) {
+ if (tIsInt) {
x22 = f22 as dynamic;
l22 = f22 as dynamic;
x22 = confuse(f22);
l22 = confuse(f22);
}
- Expect.isTrue(m22 is F22);
+ Expect.isTrue(m22 is F22<T>);
Expect.isTrue(m22 is A Function<A>() Function<B extends core.int>(int x));
- Expect.isTrue(confuse(m22) is F22);
+ Expect.isTrue(confuse(m22) is F22<T>);
// In checked mode, verifies the type.
x22 = m22;
l22 = m22;
@@ -987,54 +958,51 @@ class U47<T> {
/// B Function(List<T> x) Function<B extends core.int>(int x)
void testF23() {
- Expect.isTrue(f23 is F23);
- Expect.isTrue(confuse(f23) is F23);
+ Expect.isTrue(f23 is F23<int>);
+ Expect.isTrue(confuse(f23) is F23<int>);
// In checked mode, verifies the type.
B Function(List<T> x) Function<B extends core.int>(int x) l23;
// The static function f23 sets `T` to `int`.
- if (!tIsBool) {
+ if (tIsInt) {
x23 = f23 as dynamic;
l23 = f23 as dynamic;
x23 = confuse(f23);
l23 = confuse(f23);
}
- Expect.isTrue(m23 is F23);
+ Expect.isTrue(m23 is F23<T>);
Expect.isTrue(
m23 is B Function(List<T> x) Function<B extends core.int>(int x));
- Expect.isTrue(confuse(m23) is F23);
+ Expect.isTrue(confuse(m23) is F23<T>);
// In checked mode, verifies the type.
x23 = m23;
l23 = m23;
x23 = confuse(m23);
l23 = confuse(m23);
- if (!tIsBool) {
- Expect.isTrue(f23 is F23<int>);
- Expect.isFalse(f23 is F23<bool>);
- Expect.isTrue(confuse(f23) is F23<int>);
- Expect.isFalse(confuse(f23) is F23<bool>);
- Expect.equals(tIsDynamic, m23 is F23<bool>);
- Expect.equals(tIsDynamic, confuse(m23) is F23<bool>);
- } else {
- if (typeAssertionsEnabled) {
- Expect.throws(() {
- x23 = (f23 as dynamic);
- });
- Expect.throws(() {
- x23 = confuse(f23);
- });
- B Function(List<T> x) Function<B extends core.int>(int x) l23;
- Expect.throws(() {
- l23 = (f23 as dynamic);
- });
- Expect.throws(() {
- l23 = confuse(f23);
- });
- }
- B Function(List<T> x) Function<B extends core.int>(int x) l23 = m23;
- // In checked mode, verifies the type.
- x23 = m23;
- x23 = confuse(m23);
+ // The static function has its T always set to int.
+ Expect.isTrue(f23 is F23<int>);
+ Expect.isFalse(f23 is F23<bool>);
+ Expect.isTrue(confuse(f23) is F23<int>);
+ Expect.isFalse(confuse(f23) is F23<bool>);
+ if (tIsBool) {
+ Expect.throws(() {
+ x23 = (f23 as dynamic);
+ });
+ Expect.throws(() {
+ x23 = confuse(f23);
+ });
+ Expect.throws(() {
+ l23 = (f23 as dynamic);
+ });
+ Expect.throws(() {
+ l23 = confuse(f23);
+ });
+ }
+ if (tIsInt || tIsBool) {
+ Expect.equals(tIsInt, m23 is F23<int>);
+ Expect.equals(tIsBool, m23 is F23<bool>);
+ Expect.equals(tIsInt, confuse(m23) is F23<int>);
+ Expect.equals(tIsBool, confuse(m23) is F23<bool>);
}
}
}
« no previous file with comments | « tests/language_2/function_type/function_type46_test.dart ('k') | tests/language_2/function_type/function_type48_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698