| Index: src/interpreter/interpreter-assembler.h
|
| diff --git a/src/interpreter/interpreter-assembler.h b/src/interpreter/interpreter-assembler.h
|
| index 1459c73c73613073e9adef91c94922f41408b589..707853c5eb60ec6c1f777d0b9fcc5bc71fce89a8 100644
|
| --- a/src/interpreter/interpreter-assembler.h
|
| +++ b/src/interpreter/interpreter-assembler.h
|
| @@ -129,6 +129,14 @@ class V8_EXPORT_PRIVATE InterpreterAssembler : public CodeStubAssembler {
|
| compiler::Node* first_arg, compiler::Node* arg_count,
|
| TailCallMode tail_call_mode);
|
|
|
| + // Call JSFunction or Callable |function| with |arg_count|
|
| + // arguments (not including receiver) and the first argument
|
| + // located at |first_arg|.
|
| + compiler::Node* CallJSWithSpread(compiler::Node* function,
|
| + compiler::Node* context,
|
| + compiler::Node* first_arg,
|
| + compiler::Node* arg_count);
|
| +
|
| // Call constructor |constructor| with |arg_count| arguments (not
|
| // including receiver) and the first argument located at
|
| // |first_arg|. The |new_target| is the same as the
|
|
|