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

Unified Diff: tests/language/function_type/function_type84_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_type84_test.dart
diff --git a/tests/language/function_type/function_type84_test.dart b/tests/language/function_type/function_type84_test.dart
index 51b516bb2469952d0a05dd7f0ff2eb404a1fb4e7..a51e911cbb975a95adebaa8ac1c2830bf04d4ce5 100644
--- a/tests/language/function_type/function_type84_test.dart
+++ b/tests/language/function_type/function_type84_test.dart
@@ -19,58 +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>
- = Function Function(int x1, [List<Function> x2]);
-typedef F1<T>
- = core.List<core.int> Function([Function x1]);
-typedef F2<T>
- = Function(int x0);
-typedef F3<T>
- = void Function(List<T> x0);
-typedef F4<T>
- = int Function([int x1]) Function();
-typedef F5<T>
- = int Function({List<Function> x}) Function();
-typedef F6<T>
- = int Function() Function();
-typedef F7<T>
- = Function Function(int x0, [List<Function> x]) Function();
-typedef F8<T>
- = Function Function([List<T> x1]) Function();
-typedef F9<T>
- = List<Function> Function(int x, [Function x2]) Function();
-typedef F10<T>
- = List<Function> Function(int y, {core.List<core.int> x}) Function();
-typedef F11<T>
- = core.List<core.int> Function([Function x]) Function();
-typedef F12<T>
- = core.List<core.int> Function(core.List<core.int> x0) Function();
-typedef F13<T>
- = List<T> Function(int x1, [int x2]) Function();
-typedef F14<T>
- = List<T> Function(int x0, {List<Function> x}) Function();
-typedef F15<T>
- = Function(int x) Function();
-typedef F16<T>
- = Function(int y, [List<Function> x]) Function();
-typedef F17<T>
- = Function(int x1, [List<T> x2]) Function();
-typedef F18<T>
- = void Function({Function x}) Function();
-typedef F19<T>
- = void Function(List<T> x) Function();
-typedef F20<T>
- = Function Function<A>() Function();
-typedef F21<T>
- = List<T> Function<A>(A x) Function();
-typedef F22<T>
- = List<A> Function<A>(List<A> x) Function();
+typedef F0<T> = Function Function(int x1, [List<Function> x2]);
+typedef F1<T> = core.List<core.int> Function([Function x1]);
+typedef F2<T> = Function(int x0);
+typedef F3<T> = void Function(List<T> x0);
+typedef F4<T> = int Function([int x1]) Function();
+typedef F5<T> = int Function({List<Function> x}) Function();
+typedef F6<T> = int Function() Function();
+typedef F7<T> = Function Function(int x0, [List<Function> x]) Function();
+typedef F8<T> = Function Function([List<T> x1]) Function();
+typedef F9<T> = List<Function> Function(int x, [Function x2]) Function();
+typedef F10<T> = List<Function> Function(int y, {core.List<core.int> x})
+ Function();
+typedef F11<T> = core.List<core.int> Function([Function x]) Function();
+typedef F12<T> = core.List<core.int> Function(core.List<core.int> x0)
+ Function();
+typedef F13<T> = List<T> Function(int x1, [int x2]) Function();
+typedef F14<T> = List<T> Function(int x0, {List<Function> x}) Function();
+typedef F15<T> = Function(int x) Function();
+typedef F16<T> = Function(int y, [List<Function> x]) Function();
+typedef F17<T> = Function(int x1, [List<T> x2]) Function();
+typedef F18<T> = void Function({Function x}) Function();
+typedef F19<T> = void Function(List<T> x) Function();
+typedef F20<T> = Function Function<A>() Function();
+typedef F21<T> = List<T> Function<A>(A x) Function();
+typedef F22<T> = List<A> Function<A>(List<A> x) Function();
Function f0(int x0, [List<Function> x1]) => null;
core.List<core.int> f1([Function x0]) => null;
@@ -280,7 +253,7 @@ class U84<T> {
Expect.equals(tIsDynamic, m3 is F3<bool>);
Expect.equals(tIsDynamic, confuse(m3) is F3<bool>);
} else {
- if (inCheckedMode) {
+ if (typeAssertionsEnabled) {
Expect.throws(() {
x3 = (f3 as dynamic);
});
@@ -429,7 +402,7 @@ class U84<T> {
Expect.equals(tIsDynamic, m8 is F8<bool>);
Expect.equals(tIsDynamic, confuse(m8) is F8<bool>);
} else {
- if (inCheckedMode) {
+ if (typeAssertionsEnabled) {
Expect.throws(() {
x8 = (f8 as dynamic);
});
@@ -491,8 +464,8 @@ class U84<T> {
}
Expect.isTrue(m10 is F10);
- Expect.isTrue(m10 is List<Function> Function(int y,
- {core.List<core.int> x}) Function());
+ Expect.isTrue(m10 is List<Function> Function(int y, {core.List<core.int> x})
+ Function());
Expect.isTrue(confuse(m10) is F10);
// In checked mode, verifies the type.
x10 = m10;
@@ -580,7 +553,7 @@ class U84<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);
});
@@ -633,7 +606,7 @@ class U84<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);
});
@@ -733,7 +706,7 @@ class U84<T> {
Expect.equals(tIsDynamic, m17 is F17<bool>);
Expect.equals(tIsDynamic, confuse(m17) is F17<bool>);
} else {
- if (inCheckedMode) {
+ if (typeAssertionsEnabled) {
Expect.throws(() {
x17 = (f17 as dynamic);
});
@@ -809,7 +782,7 @@ class U84<T> {
Expect.equals(tIsDynamic, m19 is F19<bool>);
Expect.equals(tIsDynamic, confuse(m19) is F19<bool>);
} else {
- if (inCheckedMode) {
+ if (typeAssertionsEnabled) {
Expect.throws(() {
x19 = (f19 as dynamic);
});
@@ -885,7 +858,7 @@ class U84<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_type83_test.dart ('k') | tests/language/function_type/function_type85_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698