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
Copy file name to clipboardExpand all lines: spec.html
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -7391,6 +7391,12 @@ <h1>
7391
7391
1. Let _method_ be ? GetMethod(_V_, @@asyncDispose).
7392
7392
1. If _method_ is *undefined*, then
7393
7393
1. Set _method_ to ? GetMethod(_V_, @@dispose).
7394
+
1. Let _closure_ be a new Abstract Closure with no parameters that captures _method_ and performs the following steps when called:
7395
+
1. Let _O_ be the *this* value.
7396
+
1. Perform ? Call(_method_, _O_).
7397
+
1. Return *undefined*.
7398
+
1. NOTE: This function is not observable to user code. It is used to ensure that a Promise returned from a synchronous `@@dispose` method will not be awaited.
0 commit comments