mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 23:07:35 +00:00
LibJS: Remove unused VM::join_arguments() function
The last uses of this were removed in ff5e07d
.
This commit is contained in:
parent
c756585deb
commit
1f4437ff2b
2 changed files with 0 additions and 13 deletions
|
@ -631,17 +631,6 @@ ThrowCompletionOr<Value> VM::resolve_this_binding()
|
|||
return TRY(environment.get_this_binding(vm));
|
||||
}
|
||||
|
||||
DeprecatedString VM::join_arguments(size_t start_index) const
|
||||
{
|
||||
StringBuilder joined_arguments;
|
||||
for (size_t i = start_index; i < argument_count(); ++i) {
|
||||
joined_arguments.append(argument(i).to_string_without_side_effects().view());
|
||||
if (i != argument_count() - 1)
|
||||
joined_arguments.append(' ');
|
||||
}
|
||||
return joined_arguments.build();
|
||||
}
|
||||
|
||||
// 9.4.5 GetNewTarget ( ), https://tc39.es/ecma262/#sec-getnewtarget
|
||||
Value VM::get_new_target()
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue