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
ii. Let result be ? Call(elementRecord.[[BodyFunction]], F).
That ? is stray - on the next line we check for abrupt completions so we can fix up the PrivateEnvironment. The ? prevents us from getting there, so the PrivateEnvironment ends up wrong.
Fix is to just remove the ?. We'll do that as part of #2547.
The text was updated successfully, but these errors were encountered:
Step 31.b.ii is
That
?
is stray - on the next line we check for abrupt completions so we can fix up the PrivateEnvironment. The?
prevents us from getting there, so the PrivateEnvironment ends up wrong.Fix is to just remove the
?
. We'll do that as part of #2547.The text was updated successfully, but these errors were encountered: