You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
And the formal parameters ought to be 'destructured' by name out of the arguments/params and put on the scope/activation/variables object prior to invocation.
The text was updated successfully, but these errors were encountered:
Formal parameters were implemented in 8e2dbd4, but the Object does not have any visibility into them. Because of this, the length property cannot be computed and set on the Function object.
Also, because the Object does not have visibility into the string names (Identifiers) of the formal parameters, Function.prototype.toString cannot produce an accurate representation of the function, which is required by the spec.
MichaelBuhler
changed the title
Each function should have formal parameters and a length property.
each function should have formal parameters and a length property.
Jul 13, 2023
And the formal parameters ought to be 'destructured' by name out of the arguments/params and put on the scope/activation/variables object prior to invocation.
The text was updated successfully, but these errors were encountered: