1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:37:46 +00:00

LibJS/Bytecode: Move SetVariable implementation to CommonImplementations

This commit is contained in:
Andreas Kling 2023-10-21 15:30:39 +02:00
parent e946440ed3
commit 393d90abe1
4 changed files with 24 additions and 10 deletions

View file

@ -428,6 +428,8 @@ public:
DeprecatedString to_deprecated_string_impl(Bytecode::Executable const&) const;
IdentifierTableIndex identifier() const { return m_identifier; }
EnvironmentMode mode() const { return m_mode; }
InitializationMode initialization_mode() const { return m_initialization_mode; }
private:
IdentifierTableIndex m_identifier;