Skip to content

Commit

Permalink
Address editor feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
rbuckton committed Feb 9, 2023
1 parent be6db19 commit b978144
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -29030,10 +29030,10 @@ <h1>Runtime Semantics: Evaluation</h1>
</emu-alg>
<emu-grammar>ExportDeclaration : DecoratorList? `export` Declaration</emu-grammar>
<emu-alg>
1. If |DecoratorList?| is present, then
1. Assert: |Declaration| is a |ClassDeclaration|.
1. If |DecoratorList| is present, then
1. Assert: |Declaration| is a |ClassDeclaration| and the |DecoratorList| of that |ClassDeclaration| is not present.
1. Let _decorators_ be ? DecoratorListEvaluation of |DecoratorList|.
1. Perform ? BindingClassDeclarationEvaluation of |ClassDeclaration| with argument _decorators_.
1. Perform ? BindingClassDeclarationEvaluation of |Declaration| with argument _decorators_.
1. Return ~empty~.
1. Else,
1. Return the result of evaluating |Declaration|.
Expand All @@ -29044,7 +29044,7 @@ <h1>Runtime Semantics: Evaluation</h1>
</emu-alg>
<emu-grammar>ExportDeclaration : DecoratorList? `export` `default` ClassDeclaration</emu-grammar>
<emu-alg>
1. If |DecoratorList?| is present, then
1. If |DecoratorList| is present, then
1. Let _decorators_ be ? DecoratorListEvaluation of |DecoratorList|.
1. Else, let _decorators_ be a new empty List.
1. Let _value_ be ? BindingClassDeclarationEvaluation of |ClassDeclaration| with argument _decorators_.
Expand Down

0 comments on commit b978144

Please sign in to comment.