| Index: src/compiler/ast-graph-builder.h
|
| diff --git a/src/compiler/ast-graph-builder.h b/src/compiler/ast-graph-builder.h
|
| index 658e7368d4d0e2ba54fbcc208bb54d57cd20f0e4..0fc65ea311216513d2a01ae4f7a690ca1225c8e4 100644
|
| --- a/src/compiler/ast-graph-builder.h
|
| +++ b/src/compiler/ast-graph-builder.h
|
| @@ -207,6 +207,9 @@ class AstGraphBuilder : public AstVisitor {
|
| // Builder to create an arguments object if it is used.
|
| Node* BuildArgumentsObject(Variable* arguments);
|
|
|
| + // Builder to create an array of rest parameters if used
|
| + Node* BuildRestArgumentsArray(Variable* rest, int index);
|
| +
|
| // Builders for variable load and assignment.
|
| Node* BuildVariableAssignment(Variable* var, Node* value, Token::Value op,
|
| BailoutId bailout_id,
|
|
|