LibJS/Bytecode: Move NewClass impl to CommonImplementations

This commit is contained in:
Simon Wanner 2023-10-29 02:40:55 +02:00 committed by Andreas Kling
commit f9fbb8cff2
Notes: sideshowbarker 2024-07-17 07:11:12 +09:00
3 changed files with 24 additions and 19 deletions

View file

@ -33,5 +33,6 @@ ThrowCompletionOr<CalleeAndThis> get_callee_and_this_from_environment(Bytecode::
Value new_regexp(VM&, ParsedRegex const&, DeprecatedString const& pattern, DeprecatedString const& flags);
MarkedVector<Value> argument_list_evaluation(Bytecode::Interpreter&);
ThrowCompletionOr<void> create_variable(VM&, DeprecatedFlyString const& name, Op::EnvironmentMode, bool is_global, bool is_immutable, bool is_strict);
ThrowCompletionOr<ECMAScriptFunctionObject*> new_class(VM&, ClassExpression const&, Optional<IdentifierTableIndex> const& lhs_name);
}