Chromium Code Reviews| Index: src/interpreter/bytecode-generator.h |
| diff --git a/src/interpreter/bytecode-generator.h b/src/interpreter/bytecode-generator.h |
| index e79ff787e9246ba278bddfa09a3e48daf21a7fc2..4acfb6be388dc3e9c471bb1071c2f90f169503d6 100644 |
| --- a/src/interpreter/bytecode-generator.h |
| +++ b/src/interpreter/bytecode-generator.h |
| @@ -46,6 +46,9 @@ class BytecodeGenerator : public AstVisitor { |
| void VisitPropertyLoad(Register obj, Property* expr); |
| void VisitVariableLoad(Variable* variable, FeedbackVectorSlot slot); |
| void VisitVariableAssignment(Variable* variable, FeedbackVectorSlot slot); |
| + void VisitArgumentsObject(Variable* arguments); |
| + void VisitThisFunctionVariable(Variable* this_function_var); |
| + void VisitNewTargetVariable(Variable* this_function_var); |
|
Michael Starzinger
2015/10/21 18:42:17
nit: s/this_function_var/new_target_var/. Or even
rmcilroy
2015/10/22 15:19:52
Done.
|
| void VisitNewLocalFunctionContext(); |
| void VisitBuildLocalActivationContext(); |
| void VisitNewLocalBlockContext(Scope* scope); |