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

Unified Diff: runtime/vm/parser.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/object_test.cc ('k') | runtime/vm/parser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/parser.h
diff --git a/runtime/vm/parser.h b/runtime/vm/parser.h
index fa19e75cd8a25c924b6749be6fab50883f73ed41..aac41b0af445965a5d02737e3d28d222e655bc84 100644
--- a/runtime/vm/parser.h
+++ b/runtime/vm/parser.h
@@ -616,7 +616,8 @@ class Parser : public ValueObject {
ArgumentListNode* arguments,
bool resolve_getter,
bool* is_no_such_method);
- AstNode* ParseSuperCall(const String& function_name);
+ AstNode* ParseSuperCall(const String& function_name,
+ const TypeArguments& func_type_args);
AstNode* ParseSuperFieldAccess(const String& field_name,
TokenPosition field_pos);
AstNode* ParseSuperOperator();
@@ -833,16 +834,20 @@ class Parser : public ValueObject {
// An implicit argument, if non-null, is prepended to the returned list.
ArgumentListNode* ParseActualParameters(ArgumentListNode* implicit_arguments,
+ const TypeArguments& func_type_args,
bool require_const);
AstNode* ParseStaticCall(const Class& cls,
const String& method_name,
TokenPosition ident_pos,
+ const TypeArguments& func_type_args,
const LibraryPrefix* prefix = NULL);
AstNode* ParseInstanceCall(AstNode* receiver,
const String& method_name,
TokenPosition ident_pos,
+ const TypeArguments& func_type_args,
bool is_conditional);
- AstNode* ParseClosureCall(AstNode* closure);
+ AstNode* ParseClosureCall(AstNode* closure,
+ const TypeArguments& func_type_args);
AstNode* GenerateStaticFieldLookup(const Field& field,
TokenPosition ident_pos);
AstNode* GenerateStaticFieldAccess(const Class& cls,
« no previous file with comments | « runtime/vm/object_test.cc ('k') | runtime/vm/parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698