1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 09:48:11 +00:00

LibJS: Compile the CallWithArgumentArray bytecode instruction

This commit is contained in:
Idan Horowitz 2023-10-28 21:04:09 +03:00 committed by Andreas Kling
parent 2b65a80ecb
commit b2d8d0c270
5 changed files with 52 additions and 27 deletions

View file

@ -31,5 +31,6 @@ struct CalleeAndThis {
};
ThrowCompletionOr<CalleeAndThis> get_callee_and_this_from_environment(Bytecode::Interpreter&, DeprecatedFlyString const& name, u32 cache_index);
Value new_regexp(VM&, ParsedRegex const&, DeprecatedString const& pattern, DeprecatedString const& flags);
MarkedVector<Value> argument_list_evaluation(Bytecode::Interpreter&);
}