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

Unified Diff: tests/language/function_type/function_type13_test.dart

Issue 2879153005: Add support to dart2js for option --enable-asserts. (Closed)
Patch Set: Added !$checked to section predicate in co19 status file Created 3 years, 5 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/function_type/function_type13_test.dart
diff --git a/tests/language/function_type/function_type13_test.dart b/tests/language/function_type/function_type13_test.dart
index 3f9334e821e5f12768d4ffb147cac94439441294..2b0ff50d3c29788f481069c61d5b188c57072910 100644
--- a/tests/language/function_type/function_type13_test.dart
+++ b/tests/language/function_type/function_type13_test.dart
@@ -19,60 +19,31 @@ import 'package:expect/expect.dart';
@AssumeDynamic()
confuse(f) => f;
-final bool inCheckedMode = (() {
- bool result = false;
- assert(result = true);
- return result;
-})();
-
-typedef F0<T>
- = int Function(int x0, [Function x]);
-typedef F1<T>
- = List<Function> Function([int x]);
-typedef F2<T>
- = core.List<core.int> Function([List<T> x]);
-typedef F3<T>
- = Function(core.List<core.int> x);
-typedef F4<T>
- = List<Function> Function<A>();
-typedef F5<T>
- = int Function([Function x]) Function(int x);
-typedef F6<T>
- = int Function(core.List<core.int> x1) Function(int x);
-typedef F7<T>
- = Function Function(int x2, [int x3]) Function(int x);
-typedef F8<T>
- = Function Function(int x1, {List<Function> x}) Function(int x);
-typedef F9<T>
- = List<Function> Function(int x) Function(int x);
-typedef F10<T>
- = List<Function> Function(int y, [List<Function> x]) Function(int x);
-typedef F11<T>
- = List<Function> Function(int x2, [List<T> x3]) Function(int x);
-typedef F12<T>
- = core.List<core.int> Function({Function x}) Function(int x);
-typedef F13<T>
- = core.List<core.int> Function(List<T> x) Function(int x);
-typedef F14<T>
- = List<T> Function(int x1, [Function x]) Function(int x);
-typedef F15<T>
- = List<T> Function([core.List<core.int> x1]) Function(int x);
-typedef F16<T>
- = Function(int x, [int x1]) Function(int x);
-typedef F17<T>
- = Function(int y, {List<Function> x}) Function(int x);
-typedef F18<T>
- = void Function([int x]) Function(int x);
-typedef F19<T>
- = void Function(List<Function> x1) Function(int x);
-typedef F20<T>
- = void Function(int x, [List<T> x1]) Function(int x);
-typedef F21<T>
- = List<Function> Function<A>(List<T> x) Function(int x);
-typedef F22<T>
- = Function<A>() Function(int x);
-typedef F23<T>
- = void Function<A>(A x) Function(int x);
+typedef F0<T> = int Function(int x0, [Function x]);
+typedef F1<T> = List<Function> Function([int x]);
+typedef F2<T> = core.List<core.int> Function([List<T> x]);
+typedef F3<T> = Function(core.List<core.int> x);
+typedef F4<T> = List<Function> Function<A>();
+typedef F5<T> = int Function([Function x]) Function(int x);
+typedef F6<T> = int Function(core.List<core.int> x1) Function(int x);
+typedef F7<T> = Function Function(int x2, [int x3]) Function(int x);
+typedef F8<T> = Function Function(int x1, {List<Function> x}) Function(int x);
+typedef F9<T> = List<Function> Function(int x) Function(int x);
+typedef F10<T> = List<Function> Function(int y, [List<Function> x]) Function(
+ int x);
+typedef F11<T> = List<Function> Function(int x2, [List<T> x3]) Function(int x);
+typedef F12<T> = core.List<core.int> Function({Function x}) Function(int x);
+typedef F13<T> = core.List<core.int> Function(List<T> x) Function(int x);
+typedef F14<T> = List<T> Function(int x1, [Function x]) Function(int x);
+typedef F15<T> = List<T> Function([core.List<core.int> x1]) Function(int x);
+typedef F16<T> = Function(int x, [int x1]) Function(int x);
+typedef F17<T> = Function(int y, {List<Function> x}) Function(int x);
+typedef F18<T> = void Function([int x]) Function(int x);
+typedef F19<T> = void Function(List<Function> x1) Function(int x);
+typedef F20<T> = void Function(int x, [List<T> x1]) Function(int x);
+typedef F21<T> = List<Function> Function<A>(List<T> x) Function(int x);
+typedef F22<T> = Function<A>() Function(int x);
+typedef F23<T> = void Function<A>(A x) Function(int x);
int f0(int x0, [Function x]) => null;
List<Function> f1([int x]) => null;
@@ -262,7 +233,7 @@ class U13<T> {
Expect.equals(tIsDynamic, m2 is F2<bool>);
Expect.equals(tIsDynamic, confuse(m2) is F2<bool>);
} else {
- if (inCheckedMode) {
+ if (typeAssertionsEnabled) {
Expect.throws(() {
x2 = (f2 as dynamic);
});
@@ -468,8 +439,8 @@ class U13<T> {
}
Expect.isTrue(m10 is F10);
- Expect.isTrue(m10 is List<Function> Function(int y,
- [List<Function> x]) Function(int x));
+ Expect.isTrue(m10 is List<Function> Function(int y, [List<Function> x])
+ Function(int x));
Expect.isTrue(confuse(m10) is F10);
// In checked mode, verifies the type.
x10 = m10;
@@ -509,7 +480,7 @@ class U13<T> {
Expect.equals(tIsDynamic, m11 is F11<bool>);
Expect.equals(tIsDynamic, confuse(m11) is F11<bool>);
} else {
- if (inCheckedMode) {
+ if (typeAssertionsEnabled) {
Expect.throws(() {
x11 = (f11 as dynamic);
});
@@ -587,7 +558,7 @@ class U13<T> {
Expect.equals(tIsDynamic, m13 is F13<bool>);
Expect.equals(tIsDynamic, confuse(m13) is F13<bool>);
} else {
- if (inCheckedMode) {
+ if (typeAssertionsEnabled) {
Expect.throws(() {
x13 = (f13 as dynamic);
});
@@ -640,7 +611,7 @@ class U13<T> {
Expect.equals(tIsDynamic, m14 is F14<bool>);
Expect.equals(tIsDynamic, confuse(m14) is F14<bool>);
} else {
- if (inCheckedMode) {
+ if (typeAssertionsEnabled) {
Expect.throws(() {
x14 = (f14 as dynamic);
});
@@ -693,7 +664,7 @@ class U13<T> {
Expect.equals(tIsDynamic, m15 is F15<bool>);
Expect.equals(tIsDynamic, confuse(m15) is F15<bool>);
} else {
- if (inCheckedMode) {
+ if (typeAssertionsEnabled) {
Expect.throws(() {
x15 = (f15 as dynamic);
});
@@ -841,7 +812,7 @@ class U13<T> {
Expect.equals(tIsDynamic, m20 is F20<bool>);
Expect.equals(tIsDynamic, confuse(m20) is F20<bool>);
} else {
- if (inCheckedMode) {
+ if (typeAssertionsEnabled) {
Expect.throws(() {
x20 = (f20 as dynamic);
});
@@ -893,7 +864,7 @@ class U13<T> {
Expect.equals(tIsDynamic, m21 is F21<bool>);
Expect.equals(tIsDynamic, confuse(m21) is F21<bool>);
} else {
- if (inCheckedMode) {
+ if (typeAssertionsEnabled) {
Expect.throws(() {
x21 = (f21 as dynamic);
});
« no previous file with comments | « tests/language/function_type/function_type12_test.dart ('k') | tests/language/function_type/function_type14_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698