| Index: src/interpreter/interpreter-assembler.h
|
| diff --git a/src/interpreter/interpreter-assembler.h b/src/interpreter/interpreter-assembler.h
|
| index 937f3481d02410bb4022a2378f04c086df7abdf5..0020477cd7eeab1ed0fafb780b0870ef90801024 100644
|
| --- a/src/interpreter/interpreter-assembler.h
|
| +++ b/src/interpreter/interpreter-assembler.h
|
| @@ -145,23 +145,21 @@ class V8_EXPORT_PRIVATE InterpreterAssembler : public CodeStubAssembler {
|
| // |first_arg|. The |new_target| is the same as the
|
| // |constructor| for the new keyword, but differs for the super
|
| // keyword.
|
| - compiler::Node* CallConstruct(compiler::Node* constructor,
|
| - compiler::Node* context,
|
| - compiler::Node* new_target,
|
| - compiler::Node* first_arg,
|
| - compiler::Node* arg_count,
|
| - compiler::Node* slot_id,
|
| - compiler::Node* type_feedback_vector);
|
| + compiler::Node* Construct(compiler::Node* constructor,
|
| + compiler::Node* context, compiler::Node* new_target,
|
| + compiler::Node* first_arg,
|
| + compiler::Node* arg_count, compiler::Node* slot_id,
|
| + compiler::Node* type_feedback_vector);
|
|
|
| // Call constructor |constructor| with |arg_count| arguments (not including
|
| // receiver) and the first argument located at |first_arg|. The last argument
|
| // is always a spread. The |new_target| is the same as the |constructor| for
|
| // the new keyword, but differs for the super keyword.
|
| - compiler::Node* CallConstructWithSpread(compiler::Node* constructor,
|
| - compiler::Node* context,
|
| - compiler::Node* new_target,
|
| - compiler::Node* first_arg,
|
| - compiler::Node* arg_count);
|
| + compiler::Node* ConstructWithSpread(compiler::Node* constructor,
|
| + compiler::Node* context,
|
| + compiler::Node* new_target,
|
| + compiler::Node* first_arg,
|
| + compiler::Node* arg_count);
|
|
|
| // Call runtime function with |arg_count| arguments and the first argument
|
| // located at |first_arg|.
|
|
|