mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 14:57:35 +00:00
LibJS: Move additional notes to spec comments onto their own line
Having all spec comments verbatim on their own line with no additions made by us will make it easier to automate comparing said comments to their current spec counterparts.
This commit is contained in:
parent
90f14de1e9
commit
24d772af7c
5 changed files with 14 additions and 7 deletions
|
@ -473,7 +473,8 @@ Completion SuperCall::execute(Interpreter& interpreter, GlobalObject& global_obj
|
|||
TRY(this_er.bind_this_value(global_object, result));
|
||||
|
||||
// 9. Let F be thisER.[[FunctionObject]].
|
||||
// 10. Assert: F is an ECMAScript function object. (NOTE: This is implied by the strong C++ type.)
|
||||
// 10. Assert: F is an ECMAScript function object.
|
||||
// NOTE: This is implied by the strong C++ type.
|
||||
[[maybe_unused]] auto& f = this_er.function_object();
|
||||
|
||||
// 11. Perform ? InitializeInstanceElements(result, F).
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue