Apply review feedback

- indirect eval
- files renaming
- space after comma
This commit is contained in:
Leo Balter 2019-02-08 11:06:37 -05:00 committed by Rick Waldron
parent 9558093416
commit 6e4b434586
12 changed files with 16 additions and 3 deletions

View File

@ -0,0 +1,13 @@
/*---
esid: pending
description: >
Hashbang comments should be available in Script evaluator contexts. (indirect eval)
info: |
HashbangComment::
#! SingleLineCommentChars[opt]
features: [hashbang]
---*/
assert.sameValue((0, eval)('#!\n'), undefined);
assert.sameValue((0, eval)('#!\n1'), 1)
assert.sameValue((0, eval)('#!2\n'), undefined);

View File

@ -1,7 +1,7 @@
/*---
esid: pending
description: >
Hashbang comments should be available in Script evaluator contexts.
Hashbang comments should be available in Script evaluator contexts. (direct eval)
info: |
HashbangComment::
#! SingleLineCommentChars[opt]

View File

@ -17,8 +17,8 @@ for (const ctor of [
GeneratorFunction,
AsyncGeneratorFunction,
]) {
assert.throws(SyntaxError, () => ctor('#!\n_',''), `${ctor.name} Call argument`);
assert.throws(SyntaxError, () => ctor('#!\n_', ''), `${ctor.name} Call argument`);
assert.throws(SyntaxError, () => ctor('#!\n_'), `${ctor.name} Call body`);
assert.throws(SyntaxError, () => new ctor('#!\n_',''), `${ctor.name} Construct argument`);
assert.throws(SyntaxError, () => new ctor('#!\n_', ''), `${ctor.name} Construct argument`);
assert.throws(SyntaxError, () => new ctor('#!\n_'), `${ctor.name} Construct body`);
}