From f462fe6480d5db46739f2b533ece7d087028a28c Mon Sep 17 00:00:00 2001 From: codehag Date: Fri, 14 May 2021 10:53:29 +0200 Subject: [PATCH] make the linter happy --- spec.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec.html b/spec.html index 71665e5de5..c7223f235d 100644 --- a/spec.html +++ b/spec.html @@ -23208,7 +23208,7 @@

AsyncModuleExecutionFulfilled ( _module_ )

1. Perform ! ExecuteAsyncModule(_m_). 1. Otherwise: 1. Let _result_ be _m_.ExecuteModule(). - 1. If _result_ is an abrupt completion: + 1. If _result_ is an abrupt completion, then 1. Perform ! AsyncModuleExecutionRejected(_m_, _result_.[[Value]]). 1. Otherwise: 1. Set _m_.[[AsyncEvaluating]] to *false*. @@ -23223,7 +23223,7 @@

AsyncModuleExecutionFulfilled ( _module_ )

AsyncModuleExecutionRejected ( _module_, _error_ )

1. Assert: _module_.[[Status]] is ~evaluated~. - 1. If _module_.[[AsyncEvaluating]] is *false*: + 1. If _module_.[[AsyncEvaluating]] is *false*, then 1. Assert: _module_.[[EvaluationError]] is not ~empty~. 1. Return *undefined*. 1. Assert: _module_.[[EvaluationError]] is ~empty~.