LibJS/JIT: Compile the TypeofLocal bytecode instruction

This commit is contained in:
Andreas Kling 2023-10-27 16:22:14 +02:00
commit 17b2c7d965
Notes: sideshowbarker 2024-07-17 05:21:12 +09:00
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;
};