diff options
author | Timothy Flynn <trflynn89@pm.me> | 2021-12-21 08:27:04 -0500 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-12-21 14:56:28 +0100 |
commit | d69f5ca128d716f2fc96c0af97c3abfd059045c9 (patch) | |
tree | 58e4f2ab9967a44ec4a2e7d2c9e30e4c2233b800 /Userland/Libraries/LibJS/Runtime/VM.cpp | |
parent | 968f6e24329722681133e0fbde0e9bce7bbb64ed (diff) | |
download | serenity-d69f5ca128d716f2fc96c0af97c3abfd059045c9.zip |
LibJS: Update spec numbers for Operations on Objects AOs
The error cause proposal was merged, so some spec numbers were bumped.
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/VM.cpp')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/VM.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/VM.cpp b/Userland/Libraries/LibJS/Runtime/VM.cpp index 216ccd759a..0e949e9e65 100644 --- a/Userland/Libraries/LibJS/Runtime/VM.cpp +++ b/Userland/Libraries/LibJS/Runtime/VM.cpp @@ -462,7 +462,7 @@ Reference VM::resolve_binding(FlyString const& name, Environment* environment) return get_identifier_reference(environment, name, strict); } -// 7.3.32 InitializeInstanceElements ( O, constructor ), https://tc39.es/ecma262/#sec-initializeinstanceelements +// 7.3.33 InitializeInstanceElements ( O, constructor ), https://tc39.es/ecma262/#sec-initializeinstanceelements ThrowCompletionOr<void> VM::initialize_instance_elements(Object& object, ECMAScriptFunctionObject& constructor) { for (auto& method : constructor.private_methods()) |