From 211a6cd77f1ac5cb0587297600d1470c2efa7392 Mon Sep 17 00:00:00 2001 From: Brian Terlson Date: Thu, 29 Dec 2016 15:59:20 -0800 Subject: [PATCH] Editorial: Fix step reference in AsyncFunctionStart --- spec.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec.html b/spec.html index 6a56b1a967..c5c341910c 100644 --- a/spec.html +++ b/spec.html @@ -35752,7 +35752,7 @@

AsyncFunctionStart ( _promiseCapability_, _asyncFunctionBody_ )

1. Push _asyncContext_ onto the execution context stack; _asyncContext_ is now the running execution context. 1. Resume the suspended evaluation of _asyncContext_. Let _result_ be the value returned by the resumed computation. 1. Assert: When we return here, _asyncContext_ has already been removed from the execution context stack and _runningContext_ is the currently running execution context. - 1. Assert: _result_ is a normal completion with a value of *undefined*. The possible sources of completion values are AsyncFunctionAwait or, if the async function doesn't await anything, the step 3.7 above. + 1. Assert: _result_ is a normal completion with a value of *undefined*. The possible sources of completion values are AsyncFunctionAwait or, if the async function doesn't await anything, the step 3.g above. 1. Return.