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

Unified Diff: pkg/compiler/lib/src/native/enqueue.dart

Issue 2455073003: Compute NativeBehavior for foreign functions. (Closed)
Patch Set: Cleanup. Created 4 years, 2 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: pkg/compiler/lib/src/native/enqueue.dart
diff --git a/pkg/compiler/lib/src/native/enqueue.dart b/pkg/compiler/lib/src/native/enqueue.dart
index 8e2d48b1204226c52e54210e85ecc3eeafc05f50..7c3f125ac0852cb220e35cd2ff53f416b2dd3400 100644
--- a/pkg/compiler/lib/src/native/enqueue.dart
+++ b/pkg/compiler/lib/src/native/enqueue.dart
@@ -584,7 +584,7 @@ class NativeResolutionEnqueuer extends NativeEnqueuerBase {
*
*/
NativeBehavior resolveJsCall(Send node, ForeignResolver resolver) {
- return NativeBehavior.ofJsCall(
+ return NativeBehavior.ofJsCallSend(
node, reporter, compiler.parsingContext, compiler.coreTypes, resolver);
}
@@ -599,8 +599,8 @@ class NativeResolutionEnqueuer extends NativeEnqueuerBase {
*/
NativeBehavior resolveJsEmbeddedGlobalCall(
Send node, ForeignResolver resolver) {
- return NativeBehavior.ofJsEmbeddedGlobalCall(
- node, reporter, compiler.parsingContext, compiler.coreTypes, resolver);
+ return NativeBehavior.ofJsEmbeddedGlobalCallSend(
+ node, reporter, compiler.coreTypes, resolver);
}
/**
@@ -613,8 +613,8 @@ class NativeResolutionEnqueuer extends NativeEnqueuerBase {
*
*/
NativeBehavior resolveJsBuiltinCall(Send node, ForeignResolver resolver) {
- return NativeBehavior.ofJsBuiltinCall(
- node, reporter, compiler.parsingContext, compiler.coreTypes, resolver);
+ return NativeBehavior.ofJsBuiltinCallSend(
+ node, reporter, compiler.coreTypes, resolver);
}
}

Powered by Google App Engine
This is Rietveld 408576698