| 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);
|
|
|