| Index: runtime/vm/resolver.h
|
| diff --git a/runtime/vm/resolver.h b/runtime/vm/resolver.h
|
| index 8ce80c740bde89787586a3391766e1227eb35831..60c3e2c0e148d8dfb747ba485aaddfdd64117f87 100644
|
| --- a/runtime/vm/resolver.h
|
| +++ b/runtime/vm/resolver.h
|
| @@ -50,6 +50,7 @@ class Resolver : public AllStatic {
|
| static RawFunction* ResolveStatic(const Library& library,
|
| const String& cls_name,
|
| const String& function_name,
|
| + intptr_t type_args_len,
|
| intptr_t num_arguments,
|
| const Array& argument_names);
|
|
|
| @@ -57,6 +58,7 @@ class Resolver : public AllStatic {
|
| // public functions.
|
| static RawFunction* ResolveStatic(const Class& cls,
|
| const String& function_name,
|
| + intptr_t type_args_len,
|
| intptr_t num_arguments,
|
| const Array& argument_names);
|
|
|
| @@ -64,6 +66,7 @@ class Resolver : public AllStatic {
|
| // public and private functions.
|
| static RawFunction* ResolveStaticAllowPrivate(const Class& cls,
|
| const String& function_name,
|
| + intptr_t type_args_len,
|
| intptr_t num_arguments,
|
| const Array& argument_names);
|
| };
|
|
|