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

Unified Diff: lib/compiler/implementation/js_backend/backend.dart

Issue 11099044: Register parameter types for closure invocations to the backend. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Disable call_test for VM. Created 8 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: lib/compiler/implementation/js_backend/backend.dart
diff --git a/lib/compiler/implementation/js_backend/backend.dart b/lib/compiler/implementation/js_backend/backend.dart
index fe14f116855bd285c7467feddb8d543c7cb47eb4..2ef39e648a337b4887de2b4a6e5ce72102e77f9d 100644
--- a/lib/compiler/implementation/js_backend/backend.dart
+++ b/lib/compiler/implementation/js_backend/backend.dart
@@ -498,7 +498,7 @@ class ArgumentTypesRegistry {
staticTypeMap[element] = HTypeList.ALL_UNKNOWN;
}
- void registerDynamicInvocation(HInvokeDynamicMethod node,
+ void registerDynamicInvocation(HInvokeDynamic node,
Selector selector,
HTypeMap types) {
// If there are any getters for this method we cannot know anything about
@@ -764,7 +764,7 @@ class JavaScriptBackend extends Backend {
* Register a dynamic invocation and collect the provided types for the
* named selector.
*/
- void registerDynamicInvocation(HInvokeDynamicMethod node,
+ void registerDynamicInvocation(HInvokeDynamic node,
Selector selector,
HTypeMap types) {
argumentTypes.registerDynamicInvocation(node, selector, types);
« no previous file with comments | « no previous file | lib/compiler/implementation/ssa/codegen.dart » ('j') | tests/compiler/dart2js/mock_compiler.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698