From d76701d86ded7e83ac3f53fc40ca69cc474f57e6 Mon Sep 17 00:00:00 2001 From: Rick Waldron Date: Wed, 24 Jun 2020 15:24:34 -0400 Subject: [PATCH] Template: use .then($DONE, $DONE) wherever possible --- .../productions/cls-decl-after-same-line-async-gen.template | 2 +- .../productions/cls-decl-after-same-line-async-method.template | 2 +- .../cls-decl-after-same-line-static-async-gen.template | 2 +- .../cls-decl-after-same-line-static-async-method.template | 2 +- .../productions/cls-expr-after-same-line-async-gen.template | 2 +- .../productions/cls-expr-after-same-line-async-method.template | 2 +- .../cls-expr-after-same-line-static-async-gen.template | 2 +- .../cls-expr-after-same-line-static-async-method.template | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/class-elements/productions/cls-decl-after-same-line-async-gen.template b/src/class-elements/productions/cls-decl-after-same-line-async-gen.template index 5f839f8a42..5ea328e852 100644 --- a/src/class-elements/productions/cls-decl-after-same-line-async-gen.template +++ b/src/class-elements/productions/cls-decl-after-same-line-async-gen.template @@ -41,4 +41,4 @@ c.m().next().then(function(v) { } return Promise.resolve(assertions()); -}, $DONE).then($DONE, $DONE); +}).then($DONE, $DONE); diff --git a/src/class-elements/productions/cls-decl-after-same-line-async-method.template b/src/class-elements/productions/cls-decl-after-same-line-async-method.template index a8d3434532..70bfd7b99c 100644 --- a/src/class-elements/productions/cls-decl-after-same-line-async-method.template +++ b/src/class-elements/productions/cls-decl-after-same-line-async-method.template @@ -40,4 +40,4 @@ c.m().then(function(v) { } return Promise.resolve(assertions()); -}, $DONE).then($DONE, $DONE); +}).then($DONE, $DONE); diff --git a/src/class-elements/productions/cls-decl-after-same-line-static-async-gen.template b/src/class-elements/productions/cls-decl-after-same-line-static-async-gen.template index 2489e31fc1..b64dcea552 100644 --- a/src/class-elements/productions/cls-decl-after-same-line-static-async-gen.template +++ b/src/class-elements/productions/cls-decl-after-same-line-static-async-gen.template @@ -41,4 +41,4 @@ C.m().next().then(function(v) { } return Promise.resolve(assertions()); -}, $DONE).then($DONE, $DONE); +}).then($DONE, $DONE); diff --git a/src/class-elements/productions/cls-decl-after-same-line-static-async-method.template b/src/class-elements/productions/cls-decl-after-same-line-static-async-method.template index 3fa400320d..f46ce78493 100644 --- a/src/class-elements/productions/cls-decl-after-same-line-static-async-method.template +++ b/src/class-elements/productions/cls-decl-after-same-line-static-async-method.template @@ -40,4 +40,4 @@ C.m().then(function(v) { } return Promise.resolve(assertions()); -}, $DONE).then($DONE, $DONE); +}).then($DONE, $DONE); diff --git a/src/class-elements/productions/cls-expr-after-same-line-async-gen.template b/src/class-elements/productions/cls-expr-after-same-line-async-gen.template index 606dd761cf..efd9bfea6b 100644 --- a/src/class-elements/productions/cls-expr-after-same-line-async-gen.template +++ b/src/class-elements/productions/cls-expr-after-same-line-async-gen.template @@ -41,4 +41,4 @@ c.m().next().then(function(v) { } return Promise.resolve(assertions()); -}, $DONE).then($DONE, $DONE); +}).then($DONE, $DONE); diff --git a/src/class-elements/productions/cls-expr-after-same-line-async-method.template b/src/class-elements/productions/cls-expr-after-same-line-async-method.template index 22656d2760..eac4a800d3 100644 --- a/src/class-elements/productions/cls-expr-after-same-line-async-method.template +++ b/src/class-elements/productions/cls-expr-after-same-line-async-method.template @@ -40,4 +40,4 @@ c.m().then(function(v) { } return Promise.resolve(assertions()); -}, $DONE).then($DONE, $DONE); +}).then($DONE, $DONE); diff --git a/src/class-elements/productions/cls-expr-after-same-line-static-async-gen.template b/src/class-elements/productions/cls-expr-after-same-line-static-async-gen.template index 67fddd165d..8551243738 100644 --- a/src/class-elements/productions/cls-expr-after-same-line-static-async-gen.template +++ b/src/class-elements/productions/cls-expr-after-same-line-static-async-gen.template @@ -41,4 +41,4 @@ C.m().next().then(function(v) { } return Promise.resolve(assertions()); -}, $DONE).then($DONE, $DONE); +}).then($DONE, $DONE); diff --git a/src/class-elements/productions/cls-expr-after-same-line-static-async-method.template b/src/class-elements/productions/cls-expr-after-same-line-static-async-method.template index 06f1734c34..af10d4babc 100644 --- a/src/class-elements/productions/cls-expr-after-same-line-static-async-method.template +++ b/src/class-elements/productions/cls-expr-after-same-line-static-async-method.template @@ -40,4 +40,4 @@ C.m().then(function(v) { } return Promise.resolve(assertions()); -}, $DONE).then($DONE, $DONE); +}).then($DONE, $DONE);