LibJS: Rename Bytecode::ExecutionUnit => Bytecode::Executable

This commit is contained in:
Andreas Kling 2021-06-09 09:11:20 +02:00
commit b61f198d22
Notes: sideshowbarker 2024-07-18 12:35:29 +09:00
6 changed files with 14 additions and 14 deletions

View file

@ -48,7 +48,7 @@ private:
FlyString m_name;
NonnullRefPtr<Statement> m_body;
const Vector<FunctionNode::Parameter> m_parameters;
Optional<Bytecode::ExecutionUnit> m_bytecode_execution_unit;
Optional<Bytecode::Executable> m_bytecode_executable;
ScopeObject* m_parent_scope { nullptr };
i32 m_function_length { 0 };
bool m_is_strict { false };