| Index: src/frames.h
|
| diff --git a/src/frames.h b/src/frames.h
|
| index b98f732f7d8ddbc8b82576e2031623311ffa0769..f3347c0075de64f954aa4de1b3947799e009338d 100644
|
| --- a/src/frames.h
|
| +++ b/src/frames.h
|
| @@ -670,13 +670,20 @@ class BuiltinExitFrame : public ExitFrame {
|
|
|
| bool IsConstructor() const;
|
|
|
| + void Print(StringStream* accumulator, PrintMode mode,
|
| + int index) const override;
|
| +
|
| protected:
|
| inline explicit BuiltinExitFrame(StackFrameIteratorBase* iterator);
|
|
|
| private:
|
| + Object* GetParameter(int i) const;
|
| + int ComputeParametersCount() const;
|
| +
|
| + inline Object* receiver_slot_object() const;
|
| + inline Object* argc_slot_object() const;
|
| inline Object* target_slot_object() const;
|
| inline Object* new_target_slot_object() const;
|
| - inline Object* receiver_slot_object() const;
|
|
|
| friend class StackFrameIteratorBase;
|
| };
|
| @@ -1022,9 +1029,6 @@ class BuiltinFrame final : public JavaScriptFrame {
|
| return static_cast<BuiltinFrame*>(frame);
|
| }
|
|
|
| - // Printing support.
|
| - void Print(StringStream* accumulator, PrintMode mode, int index) const final;
|
| -
|
| protected:
|
| inline explicit BuiltinFrame(StackFrameIteratorBase* iterator);
|
|
|
|
|