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

Unified Diff: pkg/dev_compiler/lib/js/common/dart_sdk.js

Issue 3003943002: restore FutureOr cast failure ignore (Closed)
Patch Set: 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:
Download patch
« no previous file with comments | « pkg/dev_compiler/lib/js/amd/dart_sdk.js ('k') | pkg/dev_compiler/lib/js/es6/dart_sdk.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/dev_compiler/lib/js/common/dart_sdk.js
diff --git a/pkg/dev_compiler/lib/js/common/dart_sdk.js b/pkg/dev_compiler/lib/js/common/dart_sdk.js
index 92c8205dadb893e5f21ca19e652ab74ab9186270..9bd0c6f3589251019c243fa721eca1daac1227b3 100644
--- a/pkg/dev_compiler/lib/js/common/dart_sdk.js
+++ b/pkg/dev_compiler/lib/js/common/dart_sdk.js
@@ -20414,11 +20414,11 @@ async.FutureOr$ = dart.generic(T => {
};
FutureOr.as = function as_FutureOr(o) {
if (o == null || T.is(o) || FutureOfT().is(o)) return o;
- return dart.castError(o, this, false);
+ return dart.as(o, this, false);
};
FutureOr._check = function check_FutureOr(o) {
if (o == null || T.is(o) || FutureOfT().is(o)) return o;
- return dart.castError(o, this, true);
+ return dart.as(o, this, true);
};
return FutureOr;
});
« no previous file with comments | « pkg/dev_compiler/lib/js/amd/dart_sdk.js ('k') | pkg/dev_compiler/lib/js/es6/dart_sdk.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698