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

LibJS: Remove Bytecode::Interpreter::debug_position()

This was only used in one place, and that place is already covered
by a VERIFY anyway.
This commit is contained in:
Andreas Kling 2023-09-26 15:36:45 +02:00
parent 0c746366cc
commit 213b835b57
3 changed files with 0 additions and 12 deletions

View file

@ -855,11 +855,6 @@ static MarkedVector<Value> argument_list_evaluation(Bytecode::Interpreter& inter
MarkedVector<Value> argument_values { vm.heap() };
auto arguments = interpreter.accumulator();
if (!(arguments.is_object() && is<Array>(arguments.as_object()))) {
dbgln("[{}] Call arguments are not an array, but: {}", interpreter.debug_position(), arguments.to_string_without_side_effects());
interpreter.current_executable().dump();
VERIFY_NOT_REACHED();
}
auto& argument_array = arguments.as_array();
auto array_length = argument_array.indexed_properties().array_like_size();