mirror of https://github.com/tc39/test262.git
Add tests for Hashbang comments
This commit is contained in:
parent
33a306d102
commit
da8ef2e779
|
@ -0,0 +1,10 @@
|
|||
#\u0021
|
||||
/*---
|
||||
esid: pending
|
||||
description: >
|
||||
Hashbang comments should not be allowed to have encoded characters
|
||||
info: |
|
||||
HashbangComment::
|
||||
#! SingleLineCommentChars[opt]
|
||||
flags: [raw]
|
||||
---*/
|
|
@ -0,0 +1,10 @@
|
|||
\u0023!
|
||||
/*---
|
||||
esid: pending
|
||||
description: >
|
||||
Hashbang comments should not be allowed to have encoded characters
|
||||
info: |
|
||||
HashbangComment::
|
||||
#! SingleLineCommentChars[opt]
|
||||
flags: [raw]
|
||||
---*/
|
|
@ -0,0 +1,10 @@
|
|||
\u0023\u0021
|
||||
/*---
|
||||
esid: pending
|
||||
description: >
|
||||
Hashbang comments should not be allowed to have encoded characters
|
||||
info: |
|
||||
HashbangComment::
|
||||
#! SingleLineCommentChars[opt]
|
||||
flags: [raw]
|
||||
---*/
|
|
@ -0,0 +1,10 @@
|
|||
/*---
|
||||
esid: pending
|
||||
description: >
|
||||
Hashbang comments should be available in Script evaluator contexts.
|
||||
info: |
|
||||
HashbangComment::
|
||||
#! SingleLineCommentChars[opt]
|
||||
---*/
|
||||
|
||||
assert.sameValue(eval('#!\n'), undefined);
|
|
@ -0,0 +1,14 @@
|
|||
/*---
|
||||
esid: pending
|
||||
description: >
|
||||
Hashbang comments should only be allowed at the start of source texts and should not be allowed within function bodies.
|
||||
info: |
|
||||
HashbangComment::
|
||||
#! SingleLineCommentChars[opt]
|
||||
flags: [raw]
|
||||
negative:
|
||||
phase: parse
|
||||
type: SyntaxError
|
||||
---*/
|
||||
function fn() {#!
|
||||
}
|
|
@ -0,0 +1,22 @@
|
|||
/*---
|
||||
esid: pending
|
||||
description: >
|
||||
Hashbang comments should not be allowed in function evaluator contexts.
|
||||
info: |
|
||||
HashbangComment::
|
||||
#! SingleLineCommentChars[opt]
|
||||
---*/
|
||||
const AsyncFunction = (async function (){}).constructor;
|
||||
const GeneratorFunction = (function *(){}).constructor;
|
||||
const AsyncGeneratorFunction = (async function *(){}).constructor;
|
||||
for (ctor of [
|
||||
Function,
|
||||
AsyncFunction,
|
||||
GeneratorFunction,
|
||||
AsyncGeneratorFunction,
|
||||
]) {
|
||||
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 body`);
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
#!
|
||||
/*---
|
||||
esid: pending
|
||||
description: >
|
||||
Hashbang comments should be allowed in Modules.
|
||||
info: |
|
||||
HashbangComment::
|
||||
#! SingleLineCommentChars[opt]
|
||||
flags: [module]
|
||||
---*/
|
|
@ -0,0 +1,15 @@
|
|||
#!/*
|
||||
these characters should not be considered within a comment
|
||||
*/
|
||||
/*---
|
||||
esid: pending
|
||||
description: >
|
||||
Hashbang comments should not interpret multi-line comments.
|
||||
info: |
|
||||
HashbangComment::
|
||||
#! SingleLineCommentChars[opt]
|
||||
flags: [raw]
|
||||
negative:
|
||||
phase: parse
|
||||
type: SyntaxError
|
||||
---*/
|
|
@ -0,0 +1,11 @@
|
|||
/*---
|
||||
esid: pending
|
||||
description: >
|
||||
Hashbang comments should not require a newline afterwards
|
||||
info: |
|
||||
HashbangComment::
|
||||
#! SingleLineCommentChars[opt]
|
||||
flags: [raw]
|
||||
---*/
|
||||
|
||||
eval('#!');
|
|
@ -0,0 +1,11 @@
|
|||
#! these characters should be treated as a comment
|
||||
/*---
|
||||
esid: pending
|
||||
description: >
|
||||
Hashbang comments should be allowed in Scripts and should not be required to be empty.
|
||||
info: |
|
||||
HashbangComment::
|
||||
#! SingleLineCommentChars[opt]
|
||||
flags: [raw]
|
||||
---*/
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
"use strict"
|
||||
#!
|
||||
/*---
|
||||
esid: pending
|
||||
description: >
|
||||
Hashbang comments should only be allowed at start of source texts and should not be preceded by DirectivePrologues.
|
||||
info: |
|
||||
HashbangComment::
|
||||
#! SingleLineCommentChars[opt]
|
||||
flags: [raw]
|
||||
negative:
|
||||
phase: parse
|
||||
type: SyntaxError
|
||||
---*/
|
|
@ -0,0 +1,13 @@
|
|||
;#!
|
||||
/*---
|
||||
esid: pending
|
||||
description: >
|
||||
Hashbang comments should only be allowed at the start of source texts and should not be preceded by empty statements.
|
||||
info: |
|
||||
HashbangComment::
|
||||
#! SingleLineCommentChars[opt]
|
||||
flags: [raw]
|
||||
negative:
|
||||
phase: parse
|
||||
type: SyntaxError
|
||||
---*/
|
|
@ -0,0 +1,14 @@
|
|||
#!
|
||||
#!
|
||||
/*---
|
||||
esid: pending
|
||||
description: >
|
||||
Hashbang comments should only be allowed at the start of source texts and should not be preceded by Hashbang comments.
|
||||
info: |
|
||||
HashbangComment::
|
||||
#! SingleLineCommentChars[opt]
|
||||
flags: [raw]
|
||||
negative:
|
||||
phase: parse
|
||||
type: SyntaxError
|
||||
---*/
|
|
@ -0,0 +1,14 @@
|
|||
//
|
||||
#!
|
||||
/*---
|
||||
esid: pending
|
||||
description: >
|
||||
Hashbang comments should only be allowed at the start of source texts and should not be preceded by line comments.
|
||||
info: |
|
||||
HashbangComment::
|
||||
#! SingleLineCommentChars[opt]
|
||||
flags: [raw]
|
||||
negative:
|
||||
phase: parse
|
||||
type: SyntaxError
|
||||
---*/
|
|
@ -0,0 +1,14 @@
|
|||
/*
|
||||
*/#!
|
||||
/*---
|
||||
esid: pending
|
||||
description: >
|
||||
Hashbang comments should only be allowed at the start of source texts and should not be preceded by multi-line comments.
|
||||
info: |
|
||||
HashbangComment::
|
||||
#! SingleLineCommentChars[opt]
|
||||
flags: [raw]
|
||||
negative:
|
||||
phase: parse
|
||||
type: SyntaxError
|
||||
---*/
|
|
@ -0,0 +1,13 @@
|
|||
#!
|
||||
/*---
|
||||
esid: pending
|
||||
description: >
|
||||
Hashbang comments should only be allowed at the start of source texts and should not be preceded by whitespace.
|
||||
info: |
|
||||
HashbangComment::
|
||||
#! SingleLineCommentChars[opt]
|
||||
flags: [raw]
|
||||
negative:
|
||||
phase: parse
|
||||
type: SyntaxError
|
||||
---*/
|
|
@ -0,0 +1,15 @@
|
|||
/*---
|
||||
esid: pending
|
||||
description: >
|
||||
Hashbang comments should only be allowed at the start of source texts and should not be allowed within blocks.
|
||||
info: |
|
||||
HashbangComment::
|
||||
#! SingleLineCommentChars[opt]
|
||||
flags: [raw]
|
||||
negative:
|
||||
phase: parse
|
||||
type: SyntaxError
|
||||
---*/
|
||||
{
|
||||
#!
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
#!"use strict"
|
||||
/*---
|
||||
esid: pending
|
||||
description: >
|
||||
Hashbang comments should not be interpretted and should not generate DirectivePrologues.
|
||||
info: |
|
||||
HashbangComment::
|
||||
#! SingleLineCommentChars[opt]
|
||||
flags: [raw]
|
||||
---*/
|
||||
|
||||
with ({}) {}
|
Loading…
Reference in New Issue