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
Get returns an ECMAScript language type, not a Property Attribute. However, the algorithm goes on to use then.[[value]]. As far as I can tell, ECMAScript language types don't have a [[value]] internal slot.
The text was updated successfully, but these errors were encountered:
No, you're right, the ? (on step 3 of Get) indicates that Get can return an abrupt completion. The Promise Resolve Function's step 10 checks to see if it did, and if so, 10.a extracts that abrupt completion's [[Value]] field.
25.6.1.3.2 step 9 is
Let
then
beGet(resolution, "then")
Get
returns an ECMAScript language type, not a Property Attribute. However, the algorithm goes on to usethen.[[value]]
. As far as I can tell, ECMAScript language types don't have a[[value]]
internal slot.The text was updated successfully, but these errors were encountered: