mirror of https://github.com/tc39/test262.git
14 lines
355 B
JavaScript
14 lines
355 B
JavaScript
|
/*---
|
||
|
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);
|