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

Unified Diff: runtime/vm/kernel_to_il.h

Issue 2941643002: Check for a passed-in type argument vector in the prolog of generic functions. (Closed)
Patch Set: Created 3 years, 6 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: runtime/vm/kernel_to_il.h
diff --git a/runtime/vm/kernel_to_il.h b/runtime/vm/kernel_to_il.h
index 038e0e1b0e706f8ce550e003543d814217912dea..2c568ee0703bd4af047244e7a96b60dd36cbd804 100644
--- a/runtime/vm/kernel_to_il.h
+++ b/runtime/vm/kernel_to_il.h
@@ -895,7 +895,9 @@ class FlowGraphBuilder : public ExpressionVisitor, public StatementVisitor {
intptr_t argument_count,
const Array& argument_names,
intptr_t num_args_checked = 1);
- Fragment ClosureCall(int argument_count, const Array& argument_names);
+ Fragment ClosureCall(intptr_t type_args_len,
+ intptr_t argument_count,
+ const Array& argument_names);
Fragment ThrowException(TokenPosition position);
Fragment RethrowException(TokenPosition position, int catch_try_index);
Fragment LoadClassId();

Powered by Google App Engine
This is Rietveld 408576698