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

Unified Diff: pkg/compiler/lib/src/js_backend/backend.dart

Issue 1153603006: dart2js cps: Type casts and related changes to type propagation. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Another typo in SExpression unstrngifier Created 5 years, 6 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
« no previous file with comments | « pkg/compiler/lib/src/dart_types.dart ('k') | pkg/compiler/lib/src/js_backend/codegen/codegen.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/js_backend/backend.dart
diff --git a/pkg/compiler/lib/src/js_backend/backend.dart b/pkg/compiler/lib/src/js_backend/backend.dart
index 2b10c540f799f430f2fcbd9f5238c04422795a18..ce403ad44d6edb0b5f439f11c65f0e5d20c06de4 100644
--- a/pkg/compiler/lib/src/js_backend/backend.dart
+++ b/pkg/compiler/lib/src/js_backend/backend.dart
@@ -1766,18 +1766,26 @@ class JavaScriptBackend extends Backend {
return findHelper('assertSubtype');
}
- Element getCheckSubtypeOfRuntimeType() {
- return findHelper('checkSubtypeOfRuntimeType');
+ Element getSubtypeCast() {
+ return findHelper('subtypeCast');
}
- Element getCheckDeferredIsLoaded() {
- return findHelper('checkDeferredIsLoaded');
+ Element getCheckSubtypeOfRuntimeType() {
+ return findHelper('checkSubtypeOfRuntimeType');
}
Element getAssertSubtypeOfRuntimeType() {
return findHelper('assertSubtypeOfRuntimeType');
}
+ Element getSubtypeOfRuntimeTypeCast() {
+ return findHelper('subtypeOfRuntimeTypeCast');
+ }
+
+ Element getCheckDeferredIsLoaded() {
+ return findHelper('checkDeferredIsLoaded');
+ }
+
Element getThrowNoSuchMethod() {
return findHelper('throwNoSuchMethod');
}
« no previous file with comments | « pkg/compiler/lib/src/dart_types.dart ('k') | pkg/compiler/lib/src/js_backend/codegen/codegen.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698