mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 23:47:45 +00:00
LibJS: NewClass bytecode instruction
This adds a the NewClass bytecode instruction, enough of it is implemented for it to show it in the bytecode (js -d).
This commit is contained in:
parent
3694b8b690
commit
f6028c2534
6 changed files with 37 additions and 1 deletions
|
@ -484,6 +484,22 @@ private:
|
|||
Register m_arguments[];
|
||||
};
|
||||
|
||||
class NewClass final : public Instruction {
|
||||
public:
|
||||
explicit NewClass(ClassExpression const& class_expression)
|
||||
: Instruction(Type::NewClass)
|
||||
, m_class_expression(class_expression)
|
||||
{
|
||||
}
|
||||
|
||||
void execute_impl(Bytecode::Interpreter&) const;
|
||||
String to_string_impl(Bytecode::Executable const&) const;
|
||||
void replace_references_impl(BasicBlock const&, BasicBlock const&) { }
|
||||
|
||||
private:
|
||||
ClassExpression const& m_class_expression;
|
||||
};
|
||||
|
||||
class NewFunction final : public Instruction {
|
||||
public:
|
||||
explicit NewFunction(FunctionNode const& function_node)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue