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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 3003943002: restore FutureOr cast failure ignore (Closed)
Patch Set: Created 3 years, 3 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 | « no previous file | pkg/dev_compiler/lib/js/common/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/amd/dart_sdk.js
diff --git a/pkg/dev_compiler/lib/js/amd/dart_sdk.js b/pkg/dev_compiler/lib/js/amd/dart_sdk.js
index 2a8dc2ea27af23dec4d25af16a36cb64a18aa621..6218cbe46aafe2e0c808a5e23dd3eace388deb7d 100644
--- a/pkg/dev_compiler/lib/js/amd/dart_sdk.js
+++ b/pkg/dev_compiler/lib/js/amd/dart_sdk.js
@@ -20415,11 +20415,11 @@ define([], function() {
};
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 | « no previous file | pkg/dev_compiler/lib/js/common/dart_sdk.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698