Move $DONOTEVALUATE() calls to correct position

This commit is contained in:
Rick Waldron 2020-10-16 20:37:19 -04:00
parent 487b77eda8
commit 23f30e527a
2 changed files with 4 additions and 4 deletions

View File

@ -16,9 +16,8 @@ negative:
type: SyntaxError type: SyntaxError
---*/ ---*/
$DONOTEVALUATE();
export { "foo" as "bar" } export { "foo" as "bar" }
function foo() {} function foo() {}
$DONOTEVALUATE();

View File

@ -16,8 +16,9 @@ negative:
type: SyntaxError type: SyntaxError
---*/ ---*/
$DONOTEVALUATE();
export { Foo as "\uD83D" } export { Foo as "\uD83D" }
function Foo() {} function Foo() {}
$DONOTEVALUATE();