mirror of
https://github.com/tc39/test262.git
synced 2025-07-22 05:24:38 +02:00
Just checking in the converted files, generated using the previous commit.
This commit is contained in:
parent
ca417c93dc
commit
0065b15889
@ -1,4 +1,4 @@
|
||||
this.GlobalScopeTests = this.GlobalScopeTests || new Array();
|
||||
this.GlobalScopeTests = this.GlobalScopeTests || {};
|
||||
GlobalScopeTests["S7.2_A5_T1"]={"assertion":"White space cannot be expressed as a Unicode escape sequence consisting of six characters, namely \\u plus four hexadecimal digits","description":"Use TAB (U+0009)","id":"S7.2_A5_T1","path":"07_Lexical_Conventions\\7.2_White_Space\\S7.2_A5_T1.js","negative":"."};
|
||||
GlobalScopeTests["S7.2_A5_T2"]={"assertion":"White space cannot be expressed as a Unicode escape sequence consisting of six characters, namely \\u plus four hexadecimal digits","description":"Use VERTICAL TAB (U+000B)","id":"S7.2_A5_T2","path":"07_Lexical_Conventions\\7.2_White_Space\\S7.2_A5_T2.js","negative":"."};
|
||||
GlobalScopeTests["S7.2_A5_T3"]={"assertion":"White space cannot be expressed as a Unicode escape sequence consisting of six characters, namely \\u plus four hexadecimal digits","description":"Use FORM FEED (U+000C)","id":"S7.2_A5_T3","path":"07_Lexical_Conventions\\7.2_White_Space\\S7.2_A5_T3.js","negative":"."};
|
||||
|
BIN
test/suite/converted/.DS_Store
vendored
BIN
test/suite/converted/.DS_Store
vendored
Binary file not shown.
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* HORIZONTAL TAB (U+0009) between any two tokens is allowed
|
||||
*
|
||||
* @id: S7.2_A1.1_T1;
|
||||
* @section: 7.2, 7.5;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A1.1_T1.js;
|
||||
* @description: Insert HORIZONTAL TAB(\u0009 and \t) between tokens of var x=1;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* HORIZONTAL TAB (U+0009) between any two tokens is allowed
|
||||
*
|
||||
* @id: S7.2_A1.1_T2;
|
||||
* @section: 7.2, 7.5;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A1.1_T2.js;
|
||||
* @description: Insert real HORIZONTAL TAB between tokens of var x=1;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* VERTICAL TAB (U+000B) between any two tokens is allowed
|
||||
*
|
||||
* @id: S7.2_A1.2_T1;
|
||||
* @section: 7.2, 7.5;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A1.2_T1.js;
|
||||
* @description: Insert VERTICAL TAB(\u000B and \v) between tokens of var x=1;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* VERTICAL TAB (U+000B) between any two tokens is allowed
|
||||
*
|
||||
* @id: S7.2_A1.2_T2;
|
||||
* @section: 7.2, 7.5;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A1.2_T2.js;
|
||||
* @description: Insert real VERTICAL TAB between tokens of var x=1;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* FORM FEED (U+000C) between any two tokens is allowed
|
||||
*
|
||||
* @id: S7.2_A1.3_T1;
|
||||
* @section: 7.2, 7.5;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A1.3_T1.js;
|
||||
* @description: Insert FORM FEED(\u000C and \f) between tokens of var x=1;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* FORM FEED (U+000C) between any two tokens is allowed
|
||||
*
|
||||
* @id: S7.2_A1.3_T2;
|
||||
* @section: 7.2, 7.5;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A1.3_T2.js;
|
||||
* @description: Insert real FORM FEED between tokens of var x=1;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* SPACE (U+0020) between any two tokens is allowed
|
||||
*
|
||||
* @id: S7.2_A1.4_T1;
|
||||
* @section: 7.2, 7.5;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A1.4_T1.js;
|
||||
* @description: Insert SPACE(\u0020) between tokens of var x=1;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* SPACE (U+0020) between any two tokens is allowed
|
||||
*
|
||||
* @id: S7.2_A1.4_T2;
|
||||
* @section: 7.2, 7.5;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A1.4_T2.js;
|
||||
* @description: Insert real SPACE between tokens of var x=1;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* NO-BREAK SPACE (U+00A0) between any two tokens is allowed
|
||||
*
|
||||
* @id: S7.2_A1.5_T1;
|
||||
* @section: 7.2, 7.5;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A1.5_T1.js;
|
||||
* @description: Insert NO-BREAK SPACE(\u00A0) between tokens of var x=1;
|
||||
*/
|
||||
|
||||
|
@ -1,6 +1,7 @@
|
||||
|
||||
|
||||
/**
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A1.5_T2.js;
|
||||
*/
|
||||
|
||||
<EFBFBD><EFBFBD>/
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* HORIZONTAL TAB (U+0009) may occur within strings
|
||||
*
|
||||
* @id: S7.2_A2.1_T1;
|
||||
* @section: 7.2, 7.8.4;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A2.1_T1.js;
|
||||
* @description: Use HORIZONTAL TAB(\u0009 and \t);
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* HORIZONTAL TAB (U+0009) may occur within strings
|
||||
*
|
||||
* @id: S7.2_A2.1_T2;
|
||||
* @section: 7.2, 7.8.4;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A2.1_T2.js;
|
||||
* @description: Use real HORIZONTAL TAB;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* VERTICAL TAB (U+000B) may occur within strings
|
||||
*
|
||||
* @id: S7.2_A2.2_T1;
|
||||
* @section: 7.2, 7.8.4;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A2.2_T1.js;
|
||||
* @description: Use VERTICAL TAB(\u000B and \v);
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* VERTICAL TAB (U+000B) may occur within strings
|
||||
*
|
||||
* @id: S7.2_A2.2_T2;
|
||||
* @section: 7.2, 7.8.4;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A2.2_T2.js;
|
||||
* @description: Use real VERTICAL TAB;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* FORM FEED (U+000C) may occur within strings
|
||||
*
|
||||
* @id: S7.2_A2.3_T1;
|
||||
* @section: 7.2, 7.8.4;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A2.3_T1.js;
|
||||
* @description: Use FORM FEED(\u000C and \f);
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* FORM FEED (U+000C) may occur within strings
|
||||
*
|
||||
* @id: S7.2_A2.3_T2;
|
||||
* @section: 7.2, 7.8.4;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A2.3_T2.js;
|
||||
* @description: Use real FORM FEED;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* SPACE (U+0020) may occur within strings
|
||||
*
|
||||
* @id: S7.2_A2.4_T1;
|
||||
* @section: 7.2, 7.8.4;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A2.4_T1.js;
|
||||
* @description: Use SPACE(\u0020);
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* SPACE (U+0020) may occur within strings
|
||||
*
|
||||
* @id: S7.2_A2.4_T2;
|
||||
* @section: 7.2, 7.8.4;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A2.4_T2.js;
|
||||
* @description: Use real SPACE;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* NO-BREAK SPACE (U+00A0) may occur within strings
|
||||
*
|
||||
* @id: S7.2_A2.5_T1;
|
||||
* @section: 7.2, 7.8.4;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A2.5_T1.js;
|
||||
* @description: Use NO-BREAK SPACE(\u00A0);
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* NO-BREAK SPACE (U+00A0) may occur within strings
|
||||
*
|
||||
* @id: S7.2_A2.5_T2;
|
||||
* @section: 7.2, 7.8.4;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A2.5_T2.js;
|
||||
* @description: Use real NO-BREAK SPACE;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Single line comment can contain HORIZONTAL TAB (U+0009)
|
||||
*
|
||||
* @id: S7.2_A3.1_T1;
|
||||
* @section: 7.2, 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A3.1_T1.js;
|
||||
* @description: Use HORIZONTAL TAB(\u0009);
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Single line comment can contain HORIZONTAL TAB (U+0009)
|
||||
*
|
||||
* @id: S7.2_A3.1_T2;
|
||||
* @section: 7.2, 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A3.1_T2.js;
|
||||
* @description: Use real HORIZONTAL TAB;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Single line comment can contain VERTICAL TAB (U+000B)
|
||||
*
|
||||
* @id: S7.2_A3.2_T1;
|
||||
* @section: 7.2, 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A3.2_T1.js;
|
||||
* @description: Use VERTICAL TAB(\u000B);
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Single line comment can contain VERTICAL TAB (U+000B)
|
||||
*
|
||||
* @id: S7.2_A3.2_T2;
|
||||
* @section: 7.2, 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A3.2_T2.js;
|
||||
* @description: Use real VERTICAL TAB;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Single line comment can contain FORM FEED (U+000C)
|
||||
*
|
||||
* @id: S7.2_A3.3_T1;
|
||||
* @section: 7.2, 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A3.3_T1.js;
|
||||
* @description: Use FORM FEED(\u000C);
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Single line comment can contain FORM FEED (U+000C)
|
||||
*
|
||||
* @id: S7.2_A3.3_T2;
|
||||
* @section: 7.2, 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A3.3_T2.js;
|
||||
* @description: Use real FORM FEED;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Single line comment can contain SPACE (U+0020)
|
||||
*
|
||||
* @id: S7.2_A3.4_T1;
|
||||
* @section: 7.2, 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A3.4_T1.js;
|
||||
* @description: Use SPACE(\u0020);
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Single line comment can contain SPACE (U+0020)
|
||||
*
|
||||
* @id: S7.2_A3.4_T2;
|
||||
* @section: 7.2, 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A3.4_T2.js;
|
||||
* @description: Use real SPACE;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Single line comment can contain NO-BREAK SPACE (U+00A0)
|
||||
*
|
||||
* @id: S7.2_A3.5_T1;
|
||||
* @section: 7.2, 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A3.5_T1.js;
|
||||
* @description: Use NO-BREAK SPACE(\u00A0);
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Single line comment can contain NO-BREAK SPACE (U+00A0)
|
||||
*
|
||||
* @id: S7.2_A3.5_T2;
|
||||
* @section: 7.2, 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A3.5_T2.js;
|
||||
* @description: Use real NO-BREAK SPACE;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Multi line comment can contain HORIZONTAL TAB (U+0009)
|
||||
*
|
||||
* @id: S7.2_A4.1_T1;
|
||||
* @section: 7.2, 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A4.1_T1.js;
|
||||
* @description: Use HORIZONTAL TAB(\u0009);
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Multi line comment can contain HORIZONTAL TAB (U+0009)
|
||||
*
|
||||
* @id: S7.2_A4.1_T2;
|
||||
* @section: 7.2, 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A4.1_T2.js;
|
||||
* @description: Use real HORIZONTAL TAB;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Multi line comment can contain VERTICAL TAB (U+000B)
|
||||
*
|
||||
* @id: S7.2_A4.2_T1;
|
||||
* @section: 7.2, 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A4.2_T1.js;
|
||||
* @description: Use VERTICAL TAB(\u000B);
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Multi line comment can contain VERTICAL TAB (U+000B)
|
||||
*
|
||||
* @id: S7.2_A4.2_T2;
|
||||
* @section: 7.2, 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A4.2_T2.js;
|
||||
* @description: Use real VERTICAL TAB;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Multi line comment can contain FORM FEED (U+000C)
|
||||
*
|
||||
* @id: S7.2_A4.3_T1;
|
||||
* @section: 7.2, 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A4.3_T1.js;
|
||||
* @description: Use FORM FEED(\u000C);
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Multi line comment can contain FORM FEED (U+000C)
|
||||
*
|
||||
* @id: S7.2_A4.3_T2;
|
||||
* @section: 7.2, 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A4.3_T2.js;
|
||||
* @description: Use real FORM FEED;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Multi line comment can contain SPACE (U+0020)
|
||||
*
|
||||
* @id: S7.2_A4.4_T1;
|
||||
* @section: 7.2, 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A4.4_T1.js;
|
||||
* @description: Use SPACE(\u0020);
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Multi line comment can contain SPACE (U+0020)
|
||||
*
|
||||
* @id: S7.2_A4.4_T2;
|
||||
* @section: 7.2, 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A4.4_T2.js;
|
||||
* @description: Use real SPACE;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Multi line comment can contain NO-BREAK SPACE (U+00A0)
|
||||
*
|
||||
* @id: S7.2_A4.5_T1;
|
||||
* @section: 7.2, 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A4.5_T1.js;
|
||||
* @description: Use NO-BREAK SPACE(\u00A0);
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Multi line comment can contain NO-BREAK SPACE (U+00A0)
|
||||
*
|
||||
* @id: S7.2_A4.5_T2;
|
||||
* @section: 7.2, 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A4.5_T2.js;
|
||||
* @description: Use real NO-BREAK SPACE;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* White space cannot be expressed as a Unicode escape sequence consisting of six characters, namely \u plus four hexadecimal digits
|
||||
*
|
||||
* @id: S7.2_A5_T1;
|
||||
* @section: 7.2;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A5_T1.js;
|
||||
* @description: Use TAB (U+0009);
|
||||
* @negative;
|
||||
*/
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* White space cannot be expressed as a Unicode escape sequence consisting of six characters, namely \u plus four hexadecimal digits
|
||||
*
|
||||
* @id: S7.2_A5_T2;
|
||||
* @section: 7.2;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A5_T2.js;
|
||||
* @description: Use VERTICAL TAB (U+000B);
|
||||
* @negative;
|
||||
*/
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* White space cannot be expressed as a Unicode escape sequence consisting of six characters, namely \u plus four hexadecimal digits
|
||||
*
|
||||
* @id: S7.2_A5_T3;
|
||||
* @section: 7.2;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A5_T3.js;
|
||||
* @description: Use FORM FEED (U+000C);
|
||||
* @negative;
|
||||
*/
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* White space cannot be expressed as a Unicode escape sequence consisting of six characters, namely \u plus four hexadecimal digits
|
||||
*
|
||||
* @id: S7.2_A5_T4;
|
||||
* @section: 7.2;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A5_T4.js;
|
||||
* @description: Use SPACE (U+0020);
|
||||
* @negative;
|
||||
*/
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* White space cannot be expressed as a Unicode escape sequence consisting of six characters, namely \u plus four hexadecimal digits
|
||||
*
|
||||
* @id: S7.2_A5_T5;
|
||||
* @section: 7.2;
|
||||
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A5_T5.js;
|
||||
* @description: Use NO-BREAK SPACE (U+00A0);
|
||||
* @negative;
|
||||
*/
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* LINE FEED (U+000A) may occur between any two tokens
|
||||
*
|
||||
* @id: S7.3_A1.1_T1;
|
||||
* @section: 7.3;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A1.1_T1.js;
|
||||
* @description: Insert LINE FEED (\u000A and \n) between tokens of var x=1;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* LINE FEED (U+000A) may occur between any two tokens
|
||||
*
|
||||
* @id: S7.3_A1.1_T2;
|
||||
* @section: 7.3;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A1.1_T2.js;
|
||||
* @description: Insert real LINE FEED between tokens of var x=1;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* CARRIAGE RETURN (U+000D) may occur between any two tokens
|
||||
*
|
||||
* @id: S7.3_A1.2_T1;
|
||||
* @section: 7.3;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A1.2_T1.js;
|
||||
* @description: Insert CARRIAGE RETURN (\u000D and \r) between tokens of var x=1;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* CARRIAGE RETURN (U+000D) may occur between any two tokens
|
||||
*
|
||||
* @id: S7.3_A1.2_T2;
|
||||
* @section: 7.3;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A1.2_T2.js;
|
||||
* @description: Insert real CARRIAGE RETURN between tokens of var x=1;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* LINE SEPARATOR (U+2028) may occur between any two tokens
|
||||
*
|
||||
* @id: S7.3_A1.3;
|
||||
* @section: 7.3;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A1.3.js;
|
||||
* @description: Insert LINE SEPARATOR (\u2028) between tokens of var x=1;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* PARAGRAPH SEPARATOR (U+2029) may occur between any two tokens
|
||||
*
|
||||
* @id: S7.3_A1.4;
|
||||
* @section: 7.3;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A1.4.js;
|
||||
* @description: Insert PARAGRAPH SEPARATOR (\u2029) between tokens of var x=1;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* LINE FEED (U+000A) within strings is not allowed
|
||||
*
|
||||
* @id: S7.3_A2.1_T1;
|
||||
* @section: 7.3;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A2.1_T1.js;
|
||||
* @description: Insert LINE FEED (\u000A) into string;
|
||||
* @negative;
|
||||
*/
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* LINE FEED (U+000A) within strings is not allowed
|
||||
*
|
||||
* @id: S7.3_A2.1_T2;
|
||||
* @section: 7.3;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A2.1_T2.js;
|
||||
* @description: Use real LINE FEED into string;
|
||||
* @negative;
|
||||
*/
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* CARRIAGE RETURN (U+000D) within strings is not allowed
|
||||
*
|
||||
* @id: S7.3_A2.2_T1;
|
||||
* @section: 7.3;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A2.2_T1.js;
|
||||
* @description: Insert CARRIAGE RETURN (\u000D) into string;
|
||||
* @negative;
|
||||
*/
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* CARRIAGE RETURN (U+000D) within strings is not allowed
|
||||
*
|
||||
* @id: S7.3_A2.2_T2;
|
||||
* @section: 7.3;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A2.2_T2.js;
|
||||
* @description: Insert real CARRIAGE RETURN into string;
|
||||
* @negative;
|
||||
*/
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* LINE SEPARATOR (U+2028) within strings is not allowed
|
||||
*
|
||||
* @id: S7.3_A2.3;
|
||||
* @section: 7.3;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A2.3.js;
|
||||
* @description: Insert LINE SEPARATOR (\u2028) into string;
|
||||
* @negative;
|
||||
*/
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* PARAGRAPH SEPARATOR (U+2029) within strings is not allowed
|
||||
*
|
||||
* @id: S7.3_A2.4;
|
||||
* @section: 7.3;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A2.4.js;
|
||||
* @description: Insert PARAGRAPH SEPARATOR (\u2029) into string;
|
||||
* @negative;
|
||||
*/
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Single line comments can not contain LINE FEED (U+000A) inside
|
||||
*
|
||||
* @id: S7.3_A3.1_T1;
|
||||
* @section: 7.3, 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A3.1_T1.js;
|
||||
* @description: Insert LINE FEED (\u000A) into single line comment;
|
||||
* @negative;
|
||||
*/
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Single line comments can not contain LINE FEED (U+000A) inside
|
||||
*
|
||||
* @id: S7.3_A3.1_T2;
|
||||
* @section: 7.3, 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A3.1_T2.js;
|
||||
* @description: Insert LINE FEED (\u000A) into begin of single line comment;
|
||||
* @negative;
|
||||
*/
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Single line comments can not contain LINE FEED (U+000A) inside
|
||||
*
|
||||
* @id: S7.3_A3.1_T3;
|
||||
* @section: 7.3, 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A3.1_T3.js;
|
||||
* @description: Insert real LINE FEED into single line comment;
|
||||
* @negative;
|
||||
*/
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Single line comments can not contain CARRIAGE RETURN (U+000D) inside
|
||||
*
|
||||
* @id: S7.3_A3.2_T1;
|
||||
* @section: 7.3, 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A3.2_T1.js;
|
||||
* @description: Insert CARRIAGE RETURN (\u000D) into single line comment;
|
||||
* @negative;
|
||||
*/
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Single line comments can not contain CARRIAGE RETURN (U+000D) inside
|
||||
*
|
||||
* @id: S7.3_A3.2_T2;
|
||||
* @section: 7.3, 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A3.2_T2.js;
|
||||
* @description: Insert CARRIAGE RETURN (\u000D) into begin of single line comment;
|
||||
* @negative;
|
||||
*/
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Single line comments can not contain CARRIAGE RETURN (U+000D) inside
|
||||
*
|
||||
* @id: S7.3_A3.2_T3;
|
||||
* @section: 7.3, 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A3.2_T3.js;
|
||||
* @description: Insert real CARRIAGE RETURN into single line comment;
|
||||
* @negative;
|
||||
*/
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Single line comments can not contain LINE SEPARATOR (U+2028) inside
|
||||
*
|
||||
* @id: S7.3_A3.3_T1;
|
||||
* @section: 7.3, 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A3.3_T1.js;
|
||||
* @description: Insert LINE SEPARATOR (\u2028) into single line comment;
|
||||
* @negative;
|
||||
*/
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Single line comments can not contain LINE SEPARATOR (U+2028) inside
|
||||
*
|
||||
* @id: S7.3_A3.3_T2;
|
||||
* @section: 7.3, 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A3.3_T2.js;
|
||||
* @description: Insert LINE SEPARATOR (\u2028) into begin of single line comment;
|
||||
* @negative;
|
||||
*/
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Single line comments can not contain PARAGRAPH SEPARATOR (U+2029) inside
|
||||
*
|
||||
* @id: S7.3_A3.4_T1;
|
||||
* @section: 7.3, 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A3.4_T1.js;
|
||||
* @description: Insert PARAGRAPH SEPARATOR (\u2029) into single line comment;
|
||||
* @negative;
|
||||
*/
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Single line comments can not contain PARAGRAPH SEPARATOR (U+2029) inside
|
||||
*
|
||||
* @id: S7.3_A3.4_T2;
|
||||
* @section: 7.3, 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A3.4_T2.js;
|
||||
* @description: Insert PARAGRAPH SEPARATOR (\u2029) into begin of single line comment;
|
||||
* @negative;
|
||||
*/
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Single line comments can contain Line Terminator at the end of line
|
||||
*
|
||||
* @id: S7.3_A4_T1;
|
||||
* @section: 7.3, 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A4_T1.js;
|
||||
* @description: Insert LINE FEED (U+000A) into the end of single line comment;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Single line comments can contain Line Terminator at the end of line
|
||||
*
|
||||
* @id: S7.3_A4_T2;
|
||||
* @section: 7.3, 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A4_T2.js;
|
||||
* @description: Insert CARRIAGE RETURN (U+000D) into the end of single line comment;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Single line comments can contain Line Terminator at the end of line
|
||||
*
|
||||
* @id: S7.3_A4_T3;
|
||||
* @section: 7.3, 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A4_T3.js;
|
||||
* @description: Insert LINE SEPARATOR (U+2028) into the end of single line comment;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Single line comments can contain Line Terminator at the end of line
|
||||
*
|
||||
* @id: S7.3_A4_T4;
|
||||
* @section: 7.3, 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A4_T4.js;
|
||||
* @description: Insert PARAGRAPH SEPARATOR (U+2029) into the end of single line comment;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Multi line comment can contain LINE FEED (U+000A)
|
||||
*
|
||||
* @id: S7.3_A5.1_T1;
|
||||
* @section: 7.3, 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A5.1_T1.js;
|
||||
* @description: Insert LINE FEED (U+000A) into multi line comment;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Multi line comment can contain LINE FEED (U+000A)
|
||||
*
|
||||
* @id: S7.3_A5.1_T2;
|
||||
* @section: 7.3, 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A5.1_T2.js;
|
||||
* @description: Insert real LINE FEED into multi line comment;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Multi line comment can contain CARRIAGE RETURN (U+000D)
|
||||
*
|
||||
* @id: S7.3_A5.2_T1;
|
||||
* @section: 7.3, 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A5.2_T1.js;
|
||||
* @description: Insert CARRIAGE RETURN (U+000D) into multi line comment;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Multi line comment can contain CARRIAGE RETURN (U+000D)
|
||||
*
|
||||
* @id: S7.3_A5.2_T2;
|
||||
* @section: 7.3, 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A5.2_T2.js;
|
||||
* @description: Insert real CARRIAGE RETURN into multi line comment;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Multi line comment can contain LINE SEPARATOR (U+2028)
|
||||
*
|
||||
* @id: S7.3_A5.3;
|
||||
* @section: 7.3, 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A5.3.js;
|
||||
* @description: Insert LINE SEPARATOR (U+2028) into multi line comment;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Multi line comment can contain LINE SEPARATOR (U+2029)
|
||||
*
|
||||
* @id: S7.3_A5.4;
|
||||
* @section: 7.3, 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A5.4.js;
|
||||
* @description: Insert PARAGRAPH SEPARATOR (U+2029) into multi line comment;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Line Terminator cannot be expressed as a Unicode escape sequence consisting of six characters, namely \u plus four hexadecimal digits
|
||||
*
|
||||
* @id: S7.3_A6_T1;
|
||||
* @section: 7.3;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A6_T1.js;
|
||||
* @description: Insert LINE FEED (U+000A) in var x;
|
||||
* @negative;
|
||||
*/
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Line Terminator cannot be expressed as a Unicode escape sequence consisting of six characters, namely \u plus four hexadecimal digits
|
||||
*
|
||||
* @id: S7.3_A6_T2;
|
||||
* @section: 7.3;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A6_T2.js;
|
||||
* @description: Insert CARRIAGE RETURN (U+000D) in var x;
|
||||
* @negative;
|
||||
*/
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Line Terminator cannot be expressed as a Unicode escape sequence consisting of six characters, namely \u plus four hexadecimal digits
|
||||
*
|
||||
* @id: S7.3_A6_T3;
|
||||
* @section: 7.3;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A6_T3.js;
|
||||
* @description: Insert LINE SEPARATOR (U+2028) in var x;
|
||||
* @negative;
|
||||
*/
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Line Terminator cannot be expressed as a Unicode escape sequence consisting of six characters, namely \u plus four hexadecimal digits
|
||||
*
|
||||
* @id: S7.3_A6_T4;
|
||||
* @section: 7.3;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A6_T4.js;
|
||||
* @description: Insert PARAGRAPH SEPARATOR (U+2029) in var x;
|
||||
* @negative;
|
||||
*/
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Line Terminators between operators are allowed
|
||||
*
|
||||
* @id: S7.3_A7_T1;
|
||||
* @section: 7.3;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A7_T1.js;
|
||||
* @description: Insert Line Terminator in var x=y+z;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Line Terminators between operators are allowed
|
||||
*
|
||||
* @id: S7.3_A7_T2;
|
||||
* @section: 7.3;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A7_T2.js;
|
||||
* @description: Insert Line Terminator in var x=y-z;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Line Terminators between operators are allowed
|
||||
*
|
||||
* @id: S7.3_A7_T3;
|
||||
* @section: 7.3;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A7_T3.js;
|
||||
* @description: Insert Line Terminator in var x=y*z;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Line Terminators between operators are allowed
|
||||
*
|
||||
* @id: S7.3_A7_T4;
|
||||
* @section: 7.3;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A7_T4.js;
|
||||
* @description: Insert Line Terminator in var x=y/z;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Line Terminators between operators are allowed
|
||||
*
|
||||
* @id: S7.3_A7_T5;
|
||||
* @section: 7.3;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A7_T5.js;
|
||||
* @description: Insert Line Terminator in var x=y%z;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Line Terminators between operators are allowed
|
||||
*
|
||||
* @id: S7.3_A7_T6;
|
||||
* @section: 7.3;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A7_T6.js;
|
||||
* @description: Insert Line Terminator in var x=y>>z;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Line Terminators between operators are allowed
|
||||
*
|
||||
* @id: S7.3_A7_T7;
|
||||
* @section: 7.3;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A7_T7.js;
|
||||
* @description: Insert Line Terminator in var x=y<<z;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Line Terminators between operators are allowed
|
||||
*
|
||||
* @id: S7.3_A7_T8;
|
||||
* @section: 7.3;
|
||||
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A7_T8.js;
|
||||
* @description: Insert Line Terminator in var x=y<z;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Correct interpretation of single line comments
|
||||
*
|
||||
* @id: S7.4_A1_T1;
|
||||
* @section: 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.4_Comments/S7.4_A1_T1.js;
|
||||
* @description: Create comments with any code;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Correct interpretation of single line comments
|
||||
*
|
||||
* @id: S7.4_A1_T2;
|
||||
* @section: 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.4_Comments/S7.4_A1_T2.js;
|
||||
* @description: Simple test, create empty comment: ///;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Correct interpretation of multi line comments
|
||||
*
|
||||
* @id: S7.4_A2_T1;
|
||||
* @section: 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.4_Comments/S7.4_A2_T1.js;
|
||||
* @description: Create comments with any code;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Correct interpretation of multi line comments
|
||||
*
|
||||
* @id: S7.4_A2_T2;
|
||||
* @section: 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.4_Comments/S7.4_A2_T2.js;
|
||||
* @description: Try use /*CHECK#1/. This is not closed multi line comment;
|
||||
* @negative;
|
||||
*/
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Multi line comments cannot nest
|
||||
*
|
||||
* @id: S7.4_A3;
|
||||
* @section: 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.4_Comments/S7.4_A3.js;
|
||||
* @description: Try use nested comments;
|
||||
* @negative;
|
||||
*/
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Single and Multi line comments are used together
|
||||
*
|
||||
* @id: S7.4_A4_T1;
|
||||
* @section: 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.4_Comments/S7.4_A4_T1.js;
|
||||
* @description: Try use 2 close comment tags;
|
||||
* @negative;
|
||||
*/
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Single and Multi line comments are used together
|
||||
*
|
||||
* @id: S7.4_A4_T2;
|
||||
* @section: 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.4_Comments/S7.4_A4_T2.js;
|
||||
* @description: Fist Multi line comment, then Single line comment;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Single and Multi line comments are used together
|
||||
*
|
||||
* @id: S7.4_A4_T3;
|
||||
* @section: 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.4_Comments/S7.4_A4_T3.js;
|
||||
* @description: Insert Single line comment into Multi line comment;
|
||||
*/
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
/**
|
||||
* Single and Multi line comments are used together
|
||||
*
|
||||
* @id: S7.4_A4_T4;
|
||||
* @section: 7.4;
|
||||
* @path: 07_Lexical_Conventions/7.4_Comments/S7.4_A4_T4.js;
|
||||
* @description: Try to open Multi line comment at the end of Single comment;
|
||||
* @negative;
|
||||
*/
|
||||
|
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