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

Unified Diff: runtime/vm/resolver.h

Issue 2859673002: Pass type argument vector to generic functions (if --reify-generic-functions is (Closed)
Patch Set: address review comments and sync Created 3 years, 7 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 | « runtime/vm/regexp_assembler_ir.cc ('k') | runtime/vm/resolver.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
};
« no previous file with comments | « runtime/vm/regexp_assembler_ir.cc ('k') | runtime/vm/resolver.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698