Skip to content

Commit

Permalink
Editorial: Add assertion for built-in function object (#3483)
Browse files Browse the repository at this point in the history
  • Loading branch information
kimjg1119 authored and ljharb committed Dec 18, 2024
1 parent 49d6d45 commit 49f42e3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -13979,7 +13979,9 @@ <h1>
<dd>a built-in function object _F_ (when the method is present)</dd>
</dl>
<emu-alg>
1. Return ? BuiltinCallOrConstruct(_F_, ~uninitialized~, _argumentsList_, _newTarget_).
1. Let _result_ be ? BuiltinCallOrConstruct(_F_, ~uninitialized~, _argumentsList_, _newTarget_).
1. Assert: _result_ is an Object.
1. Return _result_.
</emu-alg>
</emu-clause>

Expand Down

0 comments on commit 49f42e3

Please sign in to comment.