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

LibJS: Change "as [the] argument[s]" to "with arguments" in comments

This is an editorial change in the ECMA-262 spec.

See: e671b96
This commit is contained in:
Linus Groh 2022-05-01 01:21:22 +02:00
parent 214d5e3e83
commit 719137418d
2 changed files with 3 additions and 3 deletions

View file

@ -282,10 +282,10 @@ ThrowCompletionOr<void> VM::binding_initialization(NonnullRefPtr<BindingPattern>
// 1. Perform ? RequireObjectCoercible(value).
TRY(require_object_coercible(global_object, value));
// 2. Return the result of performing BindingInitialization of ObjectBindingPattern using value and environment as arguments.
// 2. Return the result of performing BindingInitialization of ObjectBindingPattern with arguments value and environment.
// BindingInitialization of ObjectBindingPattern
// 1. Perform ? PropertyBindingInitialization of BindingPropertyList using value and environment as the arguments.
// 1. Perform ? PropertyBindingInitialization of BindingPropertyList with arguments value and environment.
TRY(property_binding_initialization(*target, value, environment, global_object));
// 2. Return NormalCompletion(empty).