Add tests for Hashbang comments

This commit is contained in:
Bradley Farias 2018-12-03 15:55:42 -06:00 committed by Rick Waldron
parent 33a306d102
commit da8ef2e779
18 changed files with 232 additions and 0 deletions

View File

@ -0,0 +1,10 @@
#\u0021
/*---
esid: pending
description: >
Hashbang comments should not be allowed to have encoded characters
info: |
HashbangComment::
#! SingleLineCommentChars[opt]
flags: [raw]
---*/

View File

@ -0,0 +1,10 @@
\u0023!
/*---
esid: pending
description: >
Hashbang comments should not be allowed to have encoded characters
info: |
HashbangComment::
#! SingleLineCommentChars[opt]
flags: [raw]
---*/

View File

@ -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]
---*/

View File

@ -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);

View File

@ -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() {#!
}

View File

@ -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`);
}

View File

@ -0,0 +1,10 @@
#!
/*---
esid: pending
description: >
Hashbang comments should be allowed in Modules.
info: |
HashbangComment::
#! SingleLineCommentChars[opt]
flags: [module]
---*/

View File

@ -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
---*/

View File

@ -0,0 +1,11 @@
/*---
esid: pending
description: >
Hashbang comments should not require a newline afterwards
info: |
HashbangComment::
#! SingleLineCommentChars[opt]
flags: [raw]
---*/
eval('#!');

View File

@ -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]
---*/

View File

@ -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
---*/

View File

@ -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
---*/

View File

@ -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
---*/

View File

@ -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
---*/

View File

@ -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
---*/

View File

@ -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
---*/

View File

@ -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
---*/
{
#!
}

View File

@ -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 ({}) {}