1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 04:47:34 +00:00

LibJS/JIT: Compile the TypeofVariable bytecode instruction

This commit is contained in:
Andreas Kling 2023-10-21 15:26:03 +02:00
parent d368dc5d25
commit e946440ed3
3 changed files with 21 additions and 0 deletions

View file

@ -1418,6 +1418,8 @@ public:
ThrowCompletionOr<void> execute_impl(Bytecode::Interpreter&) const;
DeprecatedString to_deprecated_string_impl(Bytecode::Executable const&) const;
IdentifierTableIndex identifier() const { return m_identifier; }
private:
IdentifierTableIndex m_identifier;
};