mirror of https://github.com/tc39/test262.git
Apply review feedback
- indirect eval - files renaming - space after comma
This commit is contained in:
parent
9558093416
commit
6e4b434586
|
@ -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);
|
|
@ -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]
|
||||
|
|
|
@ -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`);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue