Index: src/scopes.h |
diff --git a/src/scopes.h b/src/scopes.h |
index 44434fa3622091d19d6b9e511e881883fb0b802f..25c629a2e3a89824df2ab9fa18dced4e73f1849d 100644 |
--- a/src/scopes.h |
+++ b/src/scopes.h |
@@ -415,8 +415,9 @@ class Scope: public ZoneObject { |
// Collect stack and context allocated local variables in this scope. Note |
// that the function variable - if present - is not collected and should be |
// handled separately. |
- void CollectStackAndContextLocals(ZoneList<Variable*>* stack_locals, |
- ZoneList<Variable*>* context_locals); |
+ void CollectStackAndContextLocals( |
+ ZoneList<Variable*>* stack_locals, ZoneList<Variable*>* context_locals, |
+ ZoneList<Variable*>* strong_mode_free_variables = nullptr); |
// Current number of var or const locals. |
int num_var_or_const() { return num_var_or_const_; } |