mirror of
https://github.com/tc39/test262.git
synced 2025-07-24 22:45:10 +02:00
Add path attribute.
This commit is contained in:
parent
d4354d14d5
commit
0defa37385
@ -5,6 +5,7 @@
|
||||
// copyright and this notice and otherwise comply with the Use Terms.
|
||||
|
||||
/*---
|
||||
es5id: 6.1
|
||||
description: Test for handling of supplementary characters
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: HORIZONTAL TAB (U+0009) between any two tokens is allowed
|
||||
es5id: 7.2_A1.1_T1
|
||||
description: Insert HORIZONTAL TAB(\u0009 and \t) between tokens of var x=1
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: HORIZONTAL TAB (U+0009) between any two tokens is allowed
|
||||
es5id: 7.2_A1.1_T2
|
||||
description: Insert real HORIZONTAL TAB between tokens of var x=1
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: VERTICAL TAB (U+000B) between any two tokens is allowed
|
||||
es5id: 7.2_A1.2_T1
|
||||
description: Insert VERTICAL TAB(\u000B and \v) between tokens of var x=1
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: VERTICAL TAB (U+000B) between any two tokens is allowed
|
||||
es5id: 7.2_A1.2_T2
|
||||
description: Insert real VERTICAL TAB between tokens of var x=1
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: FORM FEED (U+000C) between any two tokens is allowed
|
||||
es5id: 7.2_A1.3_T1
|
||||
description: Insert FORM FEED(\u000C and \f) between tokens of var x=1
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: FORM FEED (U+000C) between any two tokens is allowed
|
||||
es5id: 7.2_A1.3_T2
|
||||
description: Insert real FORM FEED between tokens of var x=1
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: SPACE (U+0020) between any two tokens is allowed
|
||||
es5id: 7.2_A1.4_T1
|
||||
description: Insert SPACE(\u0020) between tokens of var x=1
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: SPACE (U+0020) between any two tokens is allowed
|
||||
es5id: 7.2_A1.4_T2
|
||||
description: Insert real SPACE between tokens of var x=1
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: NO-BREAK SPACE (U+00A0) between any two tokens is allowed
|
||||
es5id: 7.2_A1.5_T1
|
||||
description: Insert NO-BREAK SPACE(\u00A0) between tokens of var x=1
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: NO-BREAK SPACE (U+00A0) between any two tokens is allowed
|
||||
es5id: 7.2_A1.5_T2
|
||||
description: Insert real NO-BREAK SPACE between tokens of var x=1
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: HORIZONTAL TAB (U+0009) may occur within strings
|
||||
es5id: 7.2_A2.1_T1
|
||||
description: Use HORIZONTAL TAB(\u0009 and \t)
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: HORIZONTAL TAB (U+0009) may occur within strings
|
||||
es5id: 7.2_A2.1_T2
|
||||
description: Use real HORIZONTAL TAB
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: VERTICAL TAB (U+000B) may occur within strings
|
||||
es5id: 7.2_A2.2_T1
|
||||
description: Use VERTICAL TAB(\u000B and \v)
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: VERTICAL TAB (U+000B) may occur within strings
|
||||
es5id: 7.2_A2.2_T2
|
||||
description: Use real VERTICAL TAB
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: FORM FEED (U+000C) may occur within strings
|
||||
es5id: 7.2_A2.3_T1
|
||||
description: Use FORM FEED(\u000C and \f)
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: FORM FEED (U+000C) may occur within strings
|
||||
es5id: 7.2_A2.3_T2
|
||||
description: Use real FORM FEED
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: SPACE (U+0020) may occur within strings
|
||||
es5id: 7.2_A2.4_T1
|
||||
description: Use SPACE(\u0020)
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: SPACE (U+0020) may occur within strings
|
||||
es5id: 7.2_A2.4_T2
|
||||
description: Use real SPACE
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: NO-BREAK SPACE (U+00A0) may occur within strings
|
||||
es5id: 7.2_A2.5_T1
|
||||
description: Use NO-BREAK SPACE(\u00A0)
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: NO-BREAK SPACE (U+00A0) may occur within strings
|
||||
es5id: 7.2_A2.5_T2
|
||||
description: Use real NO-BREAK SPACE
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Single line comment can contain HORIZONTAL TAB (U+0009)
|
||||
es5id: 7.2_A3.1_T1
|
||||
description: Use HORIZONTAL TAB(\u0009)
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Single line comment can contain HORIZONTAL TAB (U+0009)
|
||||
es5id: 7.2_A3.1_T2
|
||||
description: Use real HORIZONTAL TAB
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Single line comment can contain VERTICAL TAB (U+000B)
|
||||
es5id: 7.2_A3.2_T1
|
||||
description: Use VERTICAL TAB(\u000B)
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Single line comment can contain VERTICAL TAB (U+000B)
|
||||
es5id: 7.2_A3.2_T2
|
||||
description: Use real VERTICAL TAB
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Single line comment can contain FORM FEED (U+000C)
|
||||
es5id: 7.2_A3.3_T1
|
||||
description: Use FORM FEED(\u000C)
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Single line comment can contain FORM FEED (U+000C)
|
||||
es5id: 7.2_A3.3_T2
|
||||
description: Use real FORM FEED
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Single line comment can contain SPACE (U+0020)
|
||||
es5id: 7.2_A3.4_T1
|
||||
description: Use SPACE(\u0020)
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Single line comment can contain SPACE (U+0020)
|
||||
es5id: 7.2_A3.4_T2
|
||||
description: Use real SPACE
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Single line comment can contain NO-BREAK SPACE (U+00A0)
|
||||
es5id: 7.2_A3.5_T1
|
||||
description: Use NO-BREAK SPACE(\u00A0)
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Single line comment can contain NO-BREAK SPACE (U+00A0)
|
||||
es5id: 7.2_A3.5_T2
|
||||
description: Use real NO-BREAK SPACE
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Multi line comment can contain HORIZONTAL TAB (U+0009)
|
||||
es5id: 7.2_A4.1_T1
|
||||
description: Use HORIZONTAL TAB(\u0009)
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Multi line comment can contain HORIZONTAL TAB (U+0009)
|
||||
es5id: 7.2_A4.1_T2
|
||||
description: Use real HORIZONTAL TAB
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Multi line comment can contain VERTICAL TAB (U+000B)
|
||||
es5id: 7.2_A4.2_T1
|
||||
description: Use VERTICAL TAB(\u000B)
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Multi line comment can contain VERTICAL TAB (U+000B)
|
||||
es5id: 7.2_A4.2_T2
|
||||
description: Use real VERTICAL TAB
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Multi line comment can contain FORM FEED (U+000C)
|
||||
es5id: 7.2_A4.3_T1
|
||||
description: Use FORM FEED(\u000C)
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Multi line comment can contain FORM FEED (U+000C)
|
||||
es5id: 7.2_A4.3_T2
|
||||
description: Use real FORM FEED
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Multi line comment can contain SPACE (U+0020)
|
||||
es5id: 7.2_A4.4_T1
|
||||
description: Use SPACE(\u0020)
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Multi line comment can contain SPACE (U+0020)
|
||||
es5id: 7.2_A4.4_T2
|
||||
description: Use real SPACE
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Multi line comment can contain NO-BREAK SPACE (U+00A0)
|
||||
es5id: 7.2_A4.5_T1
|
||||
description: Use NO-BREAK SPACE(\u00A0)
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Multi line comment can contain NO-BREAK SPACE (U+00A0)
|
||||
es5id: 7.2_A4.5_T2
|
||||
description: Use real NO-BREAK SPACE
|
||||
---*/
|
||||
|
||||
|
@ -5,6 +5,7 @@
|
||||
info: >
|
||||
White space cannot be expressed as a Unicode escape sequence consisting
|
||||
of six characters, namely \u plus four hexadecimal digits
|
||||
es5id: 7.2_A5_T1
|
||||
description: Use TAB (U+0009)
|
||||
flags: [negative]
|
||||
---*/
|
||||
|
@ -5,6 +5,7 @@
|
||||
info: >
|
||||
White space cannot be expressed as a Unicode escape sequence consisting
|
||||
of six characters, namely \u plus four hexadecimal digits
|
||||
es5id: 7.2_A5_T2
|
||||
description: Use VERTICAL TAB (U+000B)
|
||||
flags: [negative]
|
||||
---*/
|
||||
|
@ -5,6 +5,7 @@
|
||||
info: >
|
||||
White space cannot be expressed as a Unicode escape sequence consisting
|
||||
of six characters, namely \u plus four hexadecimal digits
|
||||
es5id: 7.2_A5_T3
|
||||
description: Use FORM FEED (U+000C)
|
||||
flags: [negative]
|
||||
---*/
|
||||
|
@ -5,6 +5,7 @@
|
||||
info: >
|
||||
White space cannot be expressed as a Unicode escape sequence consisting
|
||||
of six characters, namely \u plus four hexadecimal digits
|
||||
es5id: 7.2_A5_T4
|
||||
description: Use SPACE (U+0020)
|
||||
flags: [negative]
|
||||
---*/
|
||||
|
@ -5,6 +5,7 @@
|
||||
info: >
|
||||
White space cannot be expressed as a Unicode escape sequence consisting
|
||||
of six characters, namely \u plus four hexadecimal digits
|
||||
es5id: 7.2_A5_T5
|
||||
description: Use NO-BREAK SPACE (U+00A0)
|
||||
flags: [negative]
|
||||
---*/
|
||||
|
@ -5,6 +5,7 @@
|
||||
// copyright and this notice and otherwise comply with the Use Terms.
|
||||
|
||||
/*---
|
||||
es5id: 7.3-1
|
||||
description: >
|
||||
7.3 - ES5 recognizes the character <LS> (\u2028) as line
|
||||
terminators when parsing statements
|
||||
|
@ -5,6 +5,7 @@
|
||||
// copyright and this notice and otherwise comply with the Use Terms.
|
||||
|
||||
/*---
|
||||
es5id: 7.3-10
|
||||
description: >
|
||||
7.3 - ES5 recognizes the character <PS> (\u2029) as a
|
||||
NonEscapeCharacter
|
||||
|
@ -5,6 +5,7 @@
|
||||
// copyright and this notice and otherwise comply with the Use Terms.
|
||||
|
||||
/*---
|
||||
es5id: 7.3-11
|
||||
description: >
|
||||
7.3 - ES5 specifies that a multiline comment that contains a line
|
||||
terminator character <LS> (\u2028) must be treated as a single
|
||||
|
@ -5,6 +5,7 @@
|
||||
// copyright and this notice and otherwise comply with the Use Terms.
|
||||
|
||||
/*---
|
||||
es5id: 7.3-12
|
||||
description: >
|
||||
7.3 - ES5 specifies that a multiline comment that contains a line
|
||||
terminator character <PS> (\u2029) must be treated as a single
|
||||
|
@ -5,6 +5,7 @@
|
||||
// copyright and this notice and otherwise comply with the Use Terms.
|
||||
|
||||
/*---
|
||||
es5id: 7.3-13
|
||||
description: >
|
||||
7.3 - ES5 specifies that a multiline comment that contains a line
|
||||
terminator character <CR> (\u000D) must be treated as a single
|
||||
|
@ -5,6 +5,7 @@
|
||||
// copyright and this notice and otherwise comply with the Use Terms.
|
||||
|
||||
/*---
|
||||
es5id: 7.3-14
|
||||
description: >
|
||||
7.3 - ES5 specifies that a multiline comment that contains a line
|
||||
terminator character <LF> (\u000A) must be treated as a single
|
||||
|
@ -5,6 +5,7 @@
|
||||
// copyright and this notice and otherwise comply with the Use Terms.
|
||||
|
||||
/*---
|
||||
es5id: 7.3-15
|
||||
description: 7.3 - ES5 recognize <BOM> (\uFFFF) as a whitespace character
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
@ -5,6 +5,7 @@
|
||||
// copyright and this notice and otherwise comply with the Use Terms.
|
||||
|
||||
/*---
|
||||
es5id: 7.3-2
|
||||
description: >
|
||||
7.3 - ES5 recognizes the character <PS> (\u2029) as line
|
||||
terminators when parsing statements
|
||||
|
@ -5,6 +5,7 @@
|
||||
// copyright and this notice and otherwise comply with the Use Terms.
|
||||
|
||||
/*---
|
||||
es5id: 7.3-3
|
||||
description: >
|
||||
7.3 - ES5 recognizes the character <LS> (\u2028) as terminating
|
||||
SingleLineComments
|
||||
|
@ -5,6 +5,7 @@
|
||||
// copyright and this notice and otherwise comply with the Use Terms.
|
||||
|
||||
/*---
|
||||
es5id: 7.3-4
|
||||
description: >
|
||||
7.3 - ES5 recognizes the character <PS> (\u2029) as terminating
|
||||
SingleLineComments
|
||||
|
@ -5,6 +5,7 @@
|
||||
// copyright and this notice and otherwise comply with the Use Terms.
|
||||
|
||||
/*---
|
||||
es5id: 7.3-5
|
||||
description: >
|
||||
7.3 - ES5 recognizes the character <LS> (\u2028) as terminating
|
||||
string literal
|
||||
|
@ -5,6 +5,7 @@
|
||||
// copyright and this notice and otherwise comply with the Use Terms.
|
||||
|
||||
/*---
|
||||
es5id: 7.3-6
|
||||
description: >
|
||||
7.3 - ES5 recognizes the character <PS> (\u2029) as terminating
|
||||
string literal
|
||||
|
@ -5,6 +5,7 @@
|
||||
// copyright and this notice and otherwise comply with the Use Terms.
|
||||
|
||||
/*---
|
||||
es5id: 7.3-7
|
||||
description: >
|
||||
7.3 - ES5 recognizes the character <LS> (\u2028) as terminating
|
||||
regular expression literals
|
||||
|
@ -5,6 +5,7 @@
|
||||
// copyright and this notice and otherwise comply with the Use Terms.
|
||||
|
||||
/*---
|
||||
es5id: 7.3-8
|
||||
description: >
|
||||
7.3 - ES5 recognizes the character <PS> (\u2029) as terminating
|
||||
regular expression literals
|
||||
|
@ -5,6 +5,7 @@
|
||||
// copyright and this notice and otherwise comply with the Use Terms.
|
||||
|
||||
/*---
|
||||
es5id: 7.3-9
|
||||
description: >
|
||||
7.3 - ES5 recognizes the character <LS> (\u2028) as a
|
||||
NonEscapeCharacter
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: LINE FEED (U+000A) may occur between any two tokens
|
||||
es5id: 7.3_A1.1_T1
|
||||
description: Insert LINE FEED (\u000A and \n) between tokens of var x=1
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: LINE FEED (U+000A) may occur between any two tokens
|
||||
es5id: 7.3_A1.1_T2
|
||||
description: Insert real LINE FEED between tokens of var x=1
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: CARRIAGE RETURN (U+000D) may occur between any two tokens
|
||||
es5id: 7.3_A1.2_T1
|
||||
description: Insert CARRIAGE RETURN (\u000D and \r) between tokens of var x=1
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: CARRIAGE RETURN (U+000D) may occur between any two tokens
|
||||
es5id: 7.3_A1.2_T2
|
||||
description: Insert real CARRIAGE RETURN between tokens of var x=1
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: LINE SEPARATOR (U+2028) may occur between any two tokens
|
||||
es5id: 7.3_A1.3
|
||||
description: Insert LINE SEPARATOR (\u2028) between tokens of var x=1
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: PARAGRAPH SEPARATOR (U+2029) may occur between any two tokens
|
||||
es5id: 7.3_A1.4
|
||||
description: Insert PARAGRAPH SEPARATOR (\u2029) between tokens of var x=1
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: LINE FEED (U+000A) within strings is not allowed
|
||||
es5id: 7.3_A2.1_T1
|
||||
description: Insert LINE FEED (\u000A) into string
|
||||
flags: [negative]
|
||||
---*/
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: LINE FEED (U+000A) within strings is not allowed
|
||||
es5id: 7.3_A2.1_T2
|
||||
description: Use real LINE FEED into string
|
||||
flags: [negative]
|
||||
---*/
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: CARRIAGE RETURN (U+000D) within strings is not allowed
|
||||
es5id: 7.3_A2.2_T1
|
||||
description: Insert CARRIAGE RETURN (\u000D) into string
|
||||
flags: [negative]
|
||||
---*/
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: CARRIAGE RETURN (U+000D) within strings is not allowed
|
||||
es5id: 7.3_A2.2_T2
|
||||
description: Insert real CARRIAGE RETURN into string
|
||||
flags: [negative]
|
||||
---*/
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: LINE SEPARATOR (U+2028) within strings is not allowed
|
||||
es5id: 7.3_A2.3
|
||||
description: Insert LINE SEPARATOR (\u2028) into string
|
||||
flags: [negative]
|
||||
---*/
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: PARAGRAPH SEPARATOR (U+2029) within strings is not allowed
|
||||
es5id: 7.3_A2.4
|
||||
description: Insert PARAGRAPH SEPARATOR (\u2029) into string
|
||||
flags: [negative]
|
||||
---*/
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Single line comments can not contain LINE FEED (U+000A) inside
|
||||
es5id: 7.3_A3.1_T1
|
||||
description: Insert LINE FEED (\u000A) into single line comment
|
||||
flags: [negative]
|
||||
---*/
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Single line comments can not contain LINE FEED (U+000A) inside
|
||||
es5id: 7.3_A3.1_T2
|
||||
description: Insert LINE FEED (\u000A) into begin of single line comment
|
||||
flags: [negative]
|
||||
---*/
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Single line comments can not contain LINE FEED (U+000A) inside
|
||||
es5id: 7.3_A3.1_T3
|
||||
description: Insert real LINE FEED into single line comment
|
||||
flags: [negative]
|
||||
---*/
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Single line comments can not contain CARRIAGE RETURN (U+000D) inside
|
||||
es5id: 7.3_A3.2_T1
|
||||
description: Insert CARRIAGE RETURN (\u000D) into single line comment
|
||||
flags: [negative]
|
||||
---*/
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Single line comments can not contain CARRIAGE RETURN (U+000D) inside
|
||||
es5id: 7.3_A3.2_T2
|
||||
description: Insert CARRIAGE RETURN (\u000D) into begin of single line comment
|
||||
flags: [negative]
|
||||
---*/
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Single line comments can not contain CARRIAGE RETURN (U+000D) inside
|
||||
es5id: 7.3_A3.2_T3
|
||||
description: Insert real CARRIAGE RETURN into single line comment
|
||||
flags: [negative]
|
||||
---*/
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Single line comments can not contain LINE SEPARATOR (U+2028) inside
|
||||
es5id: 7.3_A3.3_T1
|
||||
description: Insert LINE SEPARATOR (\u2028) into single line comment
|
||||
flags: [negative]
|
||||
---*/
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Single line comments can not contain LINE SEPARATOR (U+2028) inside
|
||||
es5id: 7.3_A3.3_T2
|
||||
description: Insert LINE SEPARATOR (\u2028) into begin of single line comment
|
||||
flags: [negative]
|
||||
---*/
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Single line comments can not contain PARAGRAPH SEPARATOR (U+2029) inside
|
||||
es5id: 7.3_A3.4_T1
|
||||
description: Insert PARAGRAPH SEPARATOR (\u2029) into single line comment
|
||||
flags: [negative]
|
||||
---*/
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Single line comments can not contain PARAGRAPH SEPARATOR (U+2029) inside
|
||||
es5id: 7.3_A3.4_T2
|
||||
description: >
|
||||
Insert PARAGRAPH SEPARATOR (\u2029) into begin of single line
|
||||
comment
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Single line comments can contain Line Terminator at the end of line
|
||||
es5id: 7.3_A4_T1
|
||||
description: Insert LINE FEED (U+000A) into the end of single line comment
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Single line comments can contain Line Terminator at the end of line
|
||||
es5id: 7.3_A4_T2
|
||||
description: Insert CARRIAGE RETURN (U+000D) into the end of single line comment
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Single line comments can contain Line Terminator at the end of line
|
||||
es5id: 7.3_A4_T3
|
||||
description: Insert LINE SEPARATOR (U+2028) into the end of single line comment
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Single line comments can contain Line Terminator at the end of line
|
||||
es5id: 7.3_A4_T4
|
||||
description: >
|
||||
Insert PARAGRAPH SEPARATOR (U+2029) into the end of single line
|
||||
comment
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Multi line comment can contain LINE FEED (U+000A)
|
||||
es5id: 7.3_A5.1_T1
|
||||
description: Insert LINE FEED (U+000A) into multi line comment
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Multi line comment can contain LINE FEED (U+000A)
|
||||
es5id: 7.3_A5.1_T2
|
||||
description: Insert real LINE FEED into multi line comment
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Multi line comment can contain CARRIAGE RETURN (U+000D)
|
||||
es5id: 7.3_A5.2_T1
|
||||
description: Insert CARRIAGE RETURN (U+000D) into multi line comment
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Multi line comment can contain CARRIAGE RETURN (U+000D)
|
||||
es5id: 7.3_A5.2_T2
|
||||
description: Insert real CARRIAGE RETURN into multi line comment
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Multi line comment can contain LINE SEPARATOR (U+2028)
|
||||
es5id: 7.3_A5.3
|
||||
description: Insert LINE SEPARATOR (U+2028) into multi line comment
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Multi line comment can contain LINE SEPARATOR (U+2029)
|
||||
es5id: 7.3_A5.4
|
||||
description: Insert PARAGRAPH SEPARATOR (U+2029) into multi line comment
|
||||
---*/
|
||||
|
||||
|
@ -5,6 +5,7 @@
|
||||
info: >
|
||||
Line Terminator cannot be expressed as a Unicode escape sequence
|
||||
consisting of six characters, namely \u plus four hexadecimal digits
|
||||
es5id: 7.3_A6_T1
|
||||
description: Insert LINE FEED (U+000A) in var x
|
||||
flags: [negative]
|
||||
---*/
|
||||
|
@ -5,6 +5,7 @@
|
||||
info: >
|
||||
Line Terminator cannot be expressed as a Unicode escape sequence
|
||||
consisting of six characters, namely \u plus four hexadecimal digits
|
||||
es5id: 7.3_A6_T2
|
||||
description: Insert CARRIAGE RETURN (U+000D) in var x
|
||||
flags: [negative]
|
||||
---*/
|
||||
|
@ -5,6 +5,7 @@
|
||||
info: >
|
||||
Line Terminator cannot be expressed as a Unicode escape sequence
|
||||
consisting of six characters, namely \u plus four hexadecimal digits
|
||||
es5id: 7.3_A6_T3
|
||||
description: Insert LINE SEPARATOR (U+2028) in var x
|
||||
flags: [negative]
|
||||
---*/
|
||||
|
@ -5,6 +5,7 @@
|
||||
info: >
|
||||
Line Terminator cannot be expressed as a Unicode escape sequence
|
||||
consisting of six characters, namely \u plus four hexadecimal digits
|
||||
es5id: 7.3_A6_T4
|
||||
description: Insert PARAGRAPH SEPARATOR (U+2029) in var x
|
||||
flags: [negative]
|
||||
---*/
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Line Terminators between operators are allowed
|
||||
es5id: 7.3_A7_T1
|
||||
description: Insert Line Terminator in var x=y+z
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Line Terminators between operators are allowed
|
||||
es5id: 7.3_A7_T2
|
||||
description: Insert Line Terminator in var x=y-z
|
||||
---*/
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
/*---
|
||||
info: Line Terminators between operators are allowed
|
||||
es5id: 7.3_A7_T3
|
||||
description: Insert Line Terminator in var x=y*z
|
||||
---*/
|
||||
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user