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

LibJS/JIT: Compile the TypeofLocal bytecode instruction

This commit is contained in:
Andreas Kling 2023-10-27 16:22:14 +02:00
parent a645b9c6c3
commit 17b2c7d965
3 changed files with 18 additions and 0 deletions

View file

@ -1447,6 +1447,8 @@ public:
ThrowCompletionOr<void> execute_impl(Bytecode::Interpreter&) const;
DeprecatedString to_deprecated_string_impl(Bytecode::Executable const&) const;
size_t index() const { return m_index; }
private:
size_t m_index;
};