1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-28 16:52:07 +00:00

LibJS/Bytecode: Move TypeofVariable impl to CommonImplementations

This commit is contained in:
Andreas Kling 2023-10-21 15:22:41 +02:00
parent c65aecd878
commit d368dc5d25
3 changed files with 20 additions and 18 deletions

View file

@ -20,5 +20,6 @@ ThrowCompletionOr<void> put_by_property_key(VM&, Value base, Value this_value, V
ThrowCompletionOr<Value> perform_call(Interpreter&, Value this_value, Op::CallType, Value callee, MarkedVector<Value> argument_values);
template<typename InstructionType>
ThrowCompletionOr<void> throw_if_needed_for_call(Interpreter&, InstructionType const&, Value callee);
ThrowCompletionOr<Value> typeof_variable(VM&, DeprecatedFlyString const&);
}