Just checking in the converted files, generated using the previous commit.

This commit is contained in:
Mark Miller 2011-09-07 21:47:38 -07:00
parent ca417c93dc
commit 0065b15889
11110 changed files with 33908 additions and 39622 deletions

View File

@ -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_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_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":"."}; 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":"."};

Binary file not shown.

View File

@ -4,8 +4,8 @@
/** /**
* HORIZONTAL TAB (U+0009) between any two tokens is allowed * HORIZONTAL TAB (U+0009) between any two tokens is allowed
* *
* @id: S7.2_A1.1_T1;
* @section: 7.2, 7.5; * @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; * @description: Insert HORIZONTAL TAB(\u0009 and \t) between tokens of var x=1;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* HORIZONTAL TAB (U+0009) between any two tokens is allowed * HORIZONTAL TAB (U+0009) between any two tokens is allowed
* *
* @id: S7.2_A1.1_T2;
* @section: 7.2, 7.5; * @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; * @description: Insert real HORIZONTAL TAB between tokens of var x=1;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* VERTICAL TAB (U+000B) between any two tokens is allowed * VERTICAL TAB (U+000B) between any two tokens is allowed
* *
* @id: S7.2_A1.2_T1;
* @section: 7.2, 7.5; * @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; * @description: Insert VERTICAL TAB(\u000B and \v) between tokens of var x=1;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* VERTICAL TAB (U+000B) between any two tokens is allowed * VERTICAL TAB (U+000B) between any two tokens is allowed
* *
* @id: S7.2_A1.2_T2;
* @section: 7.2, 7.5; * @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; * @description: Insert real VERTICAL TAB between tokens of var x=1;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* FORM FEED (U+000C) between any two tokens is allowed * FORM FEED (U+000C) between any two tokens is allowed
* *
* @id: S7.2_A1.3_T1;
* @section: 7.2, 7.5; * @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; * @description: Insert FORM FEED(\u000C and \f) between tokens of var x=1;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* FORM FEED (U+000C) between any two tokens is allowed * FORM FEED (U+000C) between any two tokens is allowed
* *
* @id: S7.2_A1.3_T2;
* @section: 7.2, 7.5; * @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; * @description: Insert real FORM FEED between tokens of var x=1;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* SPACE (U+0020) between any two tokens is allowed * SPACE (U+0020) between any two tokens is allowed
* *
* @id: S7.2_A1.4_T1;
* @section: 7.2, 7.5; * @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; * @description: Insert SPACE(\u0020) between tokens of var x=1;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* SPACE (U+0020) between any two tokens is allowed * SPACE (U+0020) between any two tokens is allowed
* *
* @id: S7.2_A1.4_T2;
* @section: 7.2, 7.5; * @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; * @description: Insert real SPACE between tokens of var x=1;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* NO-BREAK SPACE (U+00A0) between any two tokens is allowed * NO-BREAK SPACE (U+00A0) between any two tokens is allowed
* *
* @id: S7.2_A1.5_T1;
* @section: 7.2, 7.5; * @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; * @description: Insert NO-BREAK SPACE(\u00A0) between tokens of var x=1;
*/ */

View File

@ -1,6 +1,7 @@
/** /**
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A1.5_T2.js;
*/ */
<EFBFBD><EFBFBD>/ <EFBFBD><EFBFBD>/

View File

@ -4,8 +4,8 @@
/** /**
* HORIZONTAL TAB (U+0009) may occur within strings * HORIZONTAL TAB (U+0009) may occur within strings
* *
* @id: S7.2_A2.1_T1;
* @section: 7.2, 7.8.4; * @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); * @description: Use HORIZONTAL TAB(\u0009 and \t);
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* HORIZONTAL TAB (U+0009) may occur within strings * HORIZONTAL TAB (U+0009) may occur within strings
* *
* @id: S7.2_A2.1_T2;
* @section: 7.2, 7.8.4; * @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; * @description: Use real HORIZONTAL TAB;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* VERTICAL TAB (U+000B) may occur within strings * VERTICAL TAB (U+000B) may occur within strings
* *
* @id: S7.2_A2.2_T1;
* @section: 7.2, 7.8.4; * @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); * @description: Use VERTICAL TAB(\u000B and \v);
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* VERTICAL TAB (U+000B) may occur within strings * VERTICAL TAB (U+000B) may occur within strings
* *
* @id: S7.2_A2.2_T2;
* @section: 7.2, 7.8.4; * @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; * @description: Use real VERTICAL TAB;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* FORM FEED (U+000C) may occur within strings * FORM FEED (U+000C) may occur within strings
* *
* @id: S7.2_A2.3_T1;
* @section: 7.2, 7.8.4; * @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); * @description: Use FORM FEED(\u000C and \f);
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* FORM FEED (U+000C) may occur within strings * FORM FEED (U+000C) may occur within strings
* *
* @id: S7.2_A2.3_T2;
* @section: 7.2, 7.8.4; * @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; * @description: Use real FORM FEED;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* SPACE (U+0020) may occur within strings * SPACE (U+0020) may occur within strings
* *
* @id: S7.2_A2.4_T1;
* @section: 7.2, 7.8.4; * @section: 7.2, 7.8.4;
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A2.4_T1.js;
* @description: Use SPACE(\u0020); * @description: Use SPACE(\u0020);
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* SPACE (U+0020) may occur within strings * SPACE (U+0020) may occur within strings
* *
* @id: S7.2_A2.4_T2;
* @section: 7.2, 7.8.4; * @section: 7.2, 7.8.4;
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A2.4_T2.js;
* @description: Use real SPACE; * @description: Use real SPACE;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* NO-BREAK SPACE (U+00A0) may occur within strings * NO-BREAK SPACE (U+00A0) may occur within strings
* *
* @id: S7.2_A2.5_T1;
* @section: 7.2, 7.8.4; * @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); * @description: Use NO-BREAK SPACE(\u00A0);
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* NO-BREAK SPACE (U+00A0) may occur within strings * NO-BREAK SPACE (U+00A0) may occur within strings
* *
* @id: S7.2_A2.5_T2;
* @section: 7.2, 7.8.4; * @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; * @description: Use real NO-BREAK SPACE;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Single line comment can contain HORIZONTAL TAB (U+0009) * Single line comment can contain HORIZONTAL TAB (U+0009)
* *
* @id: S7.2_A3.1_T1;
* @section: 7.2, 7.4; * @section: 7.2, 7.4;
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A3.1_T1.js;
* @description: Use HORIZONTAL TAB(\u0009); * @description: Use HORIZONTAL TAB(\u0009);
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Single line comment can contain HORIZONTAL TAB (U+0009) * Single line comment can contain HORIZONTAL TAB (U+0009)
* *
* @id: S7.2_A3.1_T2;
* @section: 7.2, 7.4; * @section: 7.2, 7.4;
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A3.1_T2.js;
* @description: Use real HORIZONTAL TAB; * @description: Use real HORIZONTAL TAB;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Single line comment can contain VERTICAL TAB (U+000B) * Single line comment can contain VERTICAL TAB (U+000B)
* *
* @id: S7.2_A3.2_T1;
* @section: 7.2, 7.4; * @section: 7.2, 7.4;
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A3.2_T1.js;
* @description: Use VERTICAL TAB(\u000B); * @description: Use VERTICAL TAB(\u000B);
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Single line comment can contain VERTICAL TAB (U+000B) * Single line comment can contain VERTICAL TAB (U+000B)
* *
* @id: S7.2_A3.2_T2;
* @section: 7.2, 7.4; * @section: 7.2, 7.4;
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A3.2_T2.js;
* @description: Use real VERTICAL TAB; * @description: Use real VERTICAL TAB;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Single line comment can contain FORM FEED (U+000C) * Single line comment can contain FORM FEED (U+000C)
* *
* @id: S7.2_A3.3_T1;
* @section: 7.2, 7.4; * @section: 7.2, 7.4;
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A3.3_T1.js;
* @description: Use FORM FEED(\u000C); * @description: Use FORM FEED(\u000C);
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Single line comment can contain FORM FEED (U+000C) * Single line comment can contain FORM FEED (U+000C)
* *
* @id: S7.2_A3.3_T2;
* @section: 7.2, 7.4; * @section: 7.2, 7.4;
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A3.3_T2.js;
* @description: Use real FORM FEED; * @description: Use real FORM FEED;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Single line comment can contain SPACE (U+0020) * Single line comment can contain SPACE (U+0020)
* *
* @id: S7.2_A3.4_T1;
* @section: 7.2, 7.4; * @section: 7.2, 7.4;
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A3.4_T1.js;
* @description: Use SPACE(\u0020); * @description: Use SPACE(\u0020);
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Single line comment can contain SPACE (U+0020) * Single line comment can contain SPACE (U+0020)
* *
* @id: S7.2_A3.4_T2;
* @section: 7.2, 7.4; * @section: 7.2, 7.4;
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A3.4_T2.js;
* @description: Use real SPACE; * @description: Use real SPACE;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Single line comment can contain NO-BREAK SPACE (U+00A0) * Single line comment can contain NO-BREAK SPACE (U+00A0)
* *
* @id: S7.2_A3.5_T1;
* @section: 7.2, 7.4; * @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); * @description: Use NO-BREAK SPACE(\u00A0);
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Single line comment can contain NO-BREAK SPACE (U+00A0) * Single line comment can contain NO-BREAK SPACE (U+00A0)
* *
* @id: S7.2_A3.5_T2;
* @section: 7.2, 7.4; * @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; * @description: Use real NO-BREAK SPACE;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Multi line comment can contain HORIZONTAL TAB (U+0009) * Multi line comment can contain HORIZONTAL TAB (U+0009)
* *
* @id: S7.2_A4.1_T1;
* @section: 7.2, 7.4; * @section: 7.2, 7.4;
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A4.1_T1.js;
* @description: Use HORIZONTAL TAB(\u0009); * @description: Use HORIZONTAL TAB(\u0009);
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Multi line comment can contain HORIZONTAL TAB (U+0009) * Multi line comment can contain HORIZONTAL TAB (U+0009)
* *
* @id: S7.2_A4.1_T2;
* @section: 7.2, 7.4; * @section: 7.2, 7.4;
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A4.1_T2.js;
* @description: Use real HORIZONTAL TAB; * @description: Use real HORIZONTAL TAB;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Multi line comment can contain VERTICAL TAB (U+000B) * Multi line comment can contain VERTICAL TAB (U+000B)
* *
* @id: S7.2_A4.2_T1;
* @section: 7.2, 7.4; * @section: 7.2, 7.4;
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A4.2_T1.js;
* @description: Use VERTICAL TAB(\u000B); * @description: Use VERTICAL TAB(\u000B);
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Multi line comment can contain VERTICAL TAB (U+000B) * Multi line comment can contain VERTICAL TAB (U+000B)
* *
* @id: S7.2_A4.2_T2;
* @section: 7.2, 7.4; * @section: 7.2, 7.4;
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A4.2_T2.js;
* @description: Use real VERTICAL TAB; * @description: Use real VERTICAL TAB;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Multi line comment can contain FORM FEED (U+000C) * Multi line comment can contain FORM FEED (U+000C)
* *
* @id: S7.2_A4.3_T1;
* @section: 7.2, 7.4; * @section: 7.2, 7.4;
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A4.3_T1.js;
* @description: Use FORM FEED(\u000C); * @description: Use FORM FEED(\u000C);
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Multi line comment can contain FORM FEED (U+000C) * Multi line comment can contain FORM FEED (U+000C)
* *
* @id: S7.2_A4.3_T2;
* @section: 7.2, 7.4; * @section: 7.2, 7.4;
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A4.3_T2.js;
* @description: Use real FORM FEED; * @description: Use real FORM FEED;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Multi line comment can contain SPACE (U+0020) * Multi line comment can contain SPACE (U+0020)
* *
* @id: S7.2_A4.4_T1;
* @section: 7.2, 7.4; * @section: 7.2, 7.4;
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A4.4_T1.js;
* @description: Use SPACE(\u0020); * @description: Use SPACE(\u0020);
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Multi line comment can contain SPACE (U+0020) * Multi line comment can contain SPACE (U+0020)
* *
* @id: S7.2_A4.4_T2;
* @section: 7.2, 7.4; * @section: 7.2, 7.4;
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A4.4_T2.js;
* @description: Use real SPACE; * @description: Use real SPACE;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Multi line comment can contain NO-BREAK SPACE (U+00A0) * Multi line comment can contain NO-BREAK SPACE (U+00A0)
* *
* @id: S7.2_A4.5_T1;
* @section: 7.2, 7.4; * @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); * @description: Use NO-BREAK SPACE(\u00A0);
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Multi line comment can contain NO-BREAK SPACE (U+00A0) * Multi line comment can contain NO-BREAK SPACE (U+00A0)
* *
* @id: S7.2_A4.5_T2;
* @section: 7.2, 7.4; * @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; * @description: Use real NO-BREAK SPACE;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* White space cannot be expressed as a Unicode escape sequence consisting of six characters, namely \u plus four hexadecimal digits * 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; * @section: 7.2;
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A5_T1.js;
* @description: Use TAB (U+0009); * @description: Use TAB (U+0009);
* @negative; * @negative;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* White space cannot be expressed as a Unicode escape sequence consisting of six characters, namely \u plus four hexadecimal digits * 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; * @section: 7.2;
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A5_T2.js;
* @description: Use VERTICAL TAB (U+000B); * @description: Use VERTICAL TAB (U+000B);
* @negative; * @negative;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* White space cannot be expressed as a Unicode escape sequence consisting of six characters, namely \u plus four hexadecimal digits * 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; * @section: 7.2;
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A5_T3.js;
* @description: Use FORM FEED (U+000C); * @description: Use FORM FEED (U+000C);
* @negative; * @negative;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* White space cannot be expressed as a Unicode escape sequence consisting of six characters, namely \u plus four hexadecimal digits * 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; * @section: 7.2;
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A5_T4.js;
* @description: Use SPACE (U+0020); * @description: Use SPACE (U+0020);
* @negative; * @negative;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* White space cannot be expressed as a Unicode escape sequence consisting of six characters, namely \u plus four hexadecimal digits * 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; * @section: 7.2;
* @path: 07_Lexical_Conventions/7.2_White_Space/S7.2_A5_T5.js;
* @description: Use NO-BREAK SPACE (U+00A0); * @description: Use NO-BREAK SPACE (U+00A0);
* @negative; * @negative;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* LINE FEED (U+000A) may occur between any two tokens * LINE FEED (U+000A) may occur between any two tokens
* *
* @id: S7.3_A1.1_T1;
* @section: 7.3; * @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; * @description: Insert LINE FEED (\u000A and \n) between tokens of var x=1;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* LINE FEED (U+000A) may occur between any two tokens * LINE FEED (U+000A) may occur between any two tokens
* *
* @id: S7.3_A1.1_T2;
* @section: 7.3; * @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; * @description: Insert real LINE FEED between tokens of var x=1;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* CARRIAGE RETURN (U+000D) may occur between any two tokens * CARRIAGE RETURN (U+000D) may occur between any two tokens
* *
* @id: S7.3_A1.2_T1;
* @section: 7.3; * @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; * @description: Insert CARRIAGE RETURN (\u000D and \r) between tokens of var x=1;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* CARRIAGE RETURN (U+000D) may occur between any two tokens * CARRIAGE RETURN (U+000D) may occur between any two tokens
* *
* @id: S7.3_A1.2_T2;
* @section: 7.3; * @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; * @description: Insert real CARRIAGE RETURN between tokens of var x=1;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* LINE SEPARATOR (U+2028) may occur between any two tokens * LINE SEPARATOR (U+2028) may occur between any two tokens
* *
* @id: S7.3_A1.3;
* @section: 7.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; * @description: Insert LINE SEPARATOR (\u2028) between tokens of var x=1;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* PARAGRAPH SEPARATOR (U+2029) may occur between any two tokens * PARAGRAPH SEPARATOR (U+2029) may occur between any two tokens
* *
* @id: S7.3_A1.4;
* @section: 7.3; * @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; * @description: Insert PARAGRAPH SEPARATOR (\u2029) between tokens of var x=1;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* LINE FEED (U+000A) within strings is not allowed * LINE FEED (U+000A) within strings is not allowed
* *
* @id: S7.3_A2.1_T1;
* @section: 7.3; * @section: 7.3;
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A2.1_T1.js;
* @description: Insert LINE FEED (\u000A) into string; * @description: Insert LINE FEED (\u000A) into string;
* @negative; * @negative;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* LINE FEED (U+000A) within strings is not allowed * LINE FEED (U+000A) within strings is not allowed
* *
* @id: S7.3_A2.1_T2;
* @section: 7.3; * @section: 7.3;
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A2.1_T2.js;
* @description: Use real LINE FEED into string; * @description: Use real LINE FEED into string;
* @negative; * @negative;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* CARRIAGE RETURN (U+000D) within strings is not allowed * CARRIAGE RETURN (U+000D) within strings is not allowed
* *
* @id: S7.3_A2.2_T1;
* @section: 7.3; * @section: 7.3;
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A2.2_T1.js;
* @description: Insert CARRIAGE RETURN (\u000D) into string; * @description: Insert CARRIAGE RETURN (\u000D) into string;
* @negative; * @negative;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* CARRIAGE RETURN (U+000D) within strings is not allowed * CARRIAGE RETURN (U+000D) within strings is not allowed
* *
* @id: S7.3_A2.2_T2;
* @section: 7.3; * @section: 7.3;
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A2.2_T2.js;
* @description: Insert real CARRIAGE RETURN into string; * @description: Insert real CARRIAGE RETURN into string;
* @negative; * @negative;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* LINE SEPARATOR (U+2028) within strings is not allowed * LINE SEPARATOR (U+2028) within strings is not allowed
* *
* @id: S7.3_A2.3;
* @section: 7.3; * @section: 7.3;
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A2.3.js;
* @description: Insert LINE SEPARATOR (\u2028) into string; * @description: Insert LINE SEPARATOR (\u2028) into string;
* @negative; * @negative;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* PARAGRAPH SEPARATOR (U+2029) within strings is not allowed * PARAGRAPH SEPARATOR (U+2029) within strings is not allowed
* *
* @id: S7.3_A2.4;
* @section: 7.3; * @section: 7.3;
* @path: 07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A2.4.js;
* @description: Insert PARAGRAPH SEPARATOR (\u2029) into string; * @description: Insert PARAGRAPH SEPARATOR (\u2029) into string;
* @negative; * @negative;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Single line comments can not contain LINE FEED (U+000A) inside * Single line comments can not contain LINE FEED (U+000A) inside
* *
* @id: S7.3_A3.1_T1;
* @section: 7.3, 7.4; * @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; * @description: Insert LINE FEED (\u000A) into single line comment;
* @negative; * @negative;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Single line comments can not contain LINE FEED (U+000A) inside * Single line comments can not contain LINE FEED (U+000A) inside
* *
* @id: S7.3_A3.1_T2;
* @section: 7.3, 7.4; * @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; * @description: Insert LINE FEED (\u000A) into begin of single line comment;
* @negative; * @negative;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Single line comments can not contain LINE FEED (U+000A) inside * Single line comments can not contain LINE FEED (U+000A) inside
* *
* @id: S7.3_A3.1_T3;
* @section: 7.3, 7.4; * @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; * @description: Insert real LINE FEED into single line comment;
* @negative; * @negative;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Single line comments can not contain CARRIAGE RETURN (U+000D) inside * Single line comments can not contain CARRIAGE RETURN (U+000D) inside
* *
* @id: S7.3_A3.2_T1;
* @section: 7.3, 7.4; * @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; * @description: Insert CARRIAGE RETURN (\u000D) into single line comment;
* @negative; * @negative;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Single line comments can not contain CARRIAGE RETURN (U+000D) inside * Single line comments can not contain CARRIAGE RETURN (U+000D) inside
* *
* @id: S7.3_A3.2_T2;
* @section: 7.3, 7.4; * @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; * @description: Insert CARRIAGE RETURN (\u000D) into begin of single line comment;
* @negative; * @negative;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Single line comments can not contain CARRIAGE RETURN (U+000D) inside * Single line comments can not contain CARRIAGE RETURN (U+000D) inside
* *
* @id: S7.3_A3.2_T3;
* @section: 7.3, 7.4; * @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; * @description: Insert real CARRIAGE RETURN into single line comment;
* @negative; * @negative;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Single line comments can not contain LINE SEPARATOR (U+2028) inside * Single line comments can not contain LINE SEPARATOR (U+2028) inside
* *
* @id: S7.3_A3.3_T1;
* @section: 7.3, 7.4; * @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; * @description: Insert LINE SEPARATOR (\u2028) into single line comment;
* @negative; * @negative;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Single line comments can not contain LINE SEPARATOR (U+2028) inside * Single line comments can not contain LINE SEPARATOR (U+2028) inside
* *
* @id: S7.3_A3.3_T2;
* @section: 7.3, 7.4; * @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; * @description: Insert LINE SEPARATOR (\u2028) into begin of single line comment;
* @negative; * @negative;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Single line comments can not contain PARAGRAPH SEPARATOR (U+2029) inside * Single line comments can not contain PARAGRAPH SEPARATOR (U+2029) inside
* *
* @id: S7.3_A3.4_T1;
* @section: 7.3, 7.4; * @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; * @description: Insert PARAGRAPH SEPARATOR (\u2029) into single line comment;
* @negative; * @negative;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Single line comments can not contain PARAGRAPH SEPARATOR (U+2029) inside * Single line comments can not contain PARAGRAPH SEPARATOR (U+2029) inside
* *
* @id: S7.3_A3.4_T2;
* @section: 7.3, 7.4; * @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; * @description: Insert PARAGRAPH SEPARATOR (\u2029) into begin of single line comment;
* @negative; * @negative;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Single line comments can contain Line Terminator at the end of line * Single line comments can contain Line Terminator at the end of line
* *
* @id: S7.3_A4_T1;
* @section: 7.3, 7.4; * @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; * @description: Insert LINE FEED (U+000A) into the end of single line comment;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Single line comments can contain Line Terminator at the end of line * Single line comments can contain Line Terminator at the end of line
* *
* @id: S7.3_A4_T2;
* @section: 7.3, 7.4; * @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; * @description: Insert CARRIAGE RETURN (U+000D) into the end of single line comment;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Single line comments can contain Line Terminator at the end of line * Single line comments can contain Line Terminator at the end of line
* *
* @id: S7.3_A4_T3;
* @section: 7.3, 7.4; * @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; * @description: Insert LINE SEPARATOR (U+2028) into the end of single line comment;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Single line comments can contain Line Terminator at the end of line * Single line comments can contain Line Terminator at the end of line
* *
* @id: S7.3_A4_T4;
* @section: 7.3, 7.4; * @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; * @description: Insert PARAGRAPH SEPARATOR (U+2029) into the end of single line comment;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Multi line comment can contain LINE FEED (U+000A) * Multi line comment can contain LINE FEED (U+000A)
* *
* @id: S7.3_A5.1_T1;
* @section: 7.3, 7.4; * @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; * @description: Insert LINE FEED (U+000A) into multi line comment;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Multi line comment can contain LINE FEED (U+000A) * Multi line comment can contain LINE FEED (U+000A)
* *
* @id: S7.3_A5.1_T2;
* @section: 7.3, 7.4; * @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; * @description: Insert real LINE FEED into multi line comment;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Multi line comment can contain CARRIAGE RETURN (U+000D) * Multi line comment can contain CARRIAGE RETURN (U+000D)
* *
* @id: S7.3_A5.2_T1;
* @section: 7.3, 7.4; * @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; * @description: Insert CARRIAGE RETURN (U+000D) into multi line comment;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Multi line comment can contain CARRIAGE RETURN (U+000D) * Multi line comment can contain CARRIAGE RETURN (U+000D)
* *
* @id: S7.3_A5.2_T2;
* @section: 7.3, 7.4; * @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; * @description: Insert real CARRIAGE RETURN into multi line comment;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Multi line comment can contain LINE SEPARATOR (U+2028) * Multi line comment can contain LINE SEPARATOR (U+2028)
* *
* @id: S7.3_A5.3;
* @section: 7.3, 7.4; * @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; * @description: Insert LINE SEPARATOR (U+2028) into multi line comment;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Multi line comment can contain LINE SEPARATOR (U+2029) * Multi line comment can contain LINE SEPARATOR (U+2029)
* *
* @id: S7.3_A5.4;
* @section: 7.3, 7.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; * @description: Insert PARAGRAPH SEPARATOR (U+2029) into multi line comment;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Line Terminator cannot be expressed as a Unicode escape sequence consisting of six characters, namely \u plus four hexadecimal digits * 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; * @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; * @description: Insert LINE FEED (U+000A) in var x;
* @negative; * @negative;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Line Terminator cannot be expressed as a Unicode escape sequence consisting of six characters, namely \u plus four hexadecimal digits * 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; * @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; * @description: Insert CARRIAGE RETURN (U+000D) in var x;
* @negative; * @negative;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Line Terminator cannot be expressed as a Unicode escape sequence consisting of six characters, namely \u plus four hexadecimal digits * 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; * @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; * @description: Insert LINE SEPARATOR (U+2028) in var x;
* @negative; * @negative;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Line Terminator cannot be expressed as a Unicode escape sequence consisting of six characters, namely \u plus four hexadecimal digits * 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; * @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; * @description: Insert PARAGRAPH SEPARATOR (U+2029) in var x;
* @negative; * @negative;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Line Terminators between operators are allowed * Line Terminators between operators are allowed
* *
* @id: S7.3_A7_T1;
* @section: 7.3; * @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; * @description: Insert Line Terminator in var x=y+z;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Line Terminators between operators are allowed * Line Terminators between operators are allowed
* *
* @id: S7.3_A7_T2;
* @section: 7.3; * @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; * @description: Insert Line Terminator in var x=y-z;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Line Terminators between operators are allowed * Line Terminators between operators are allowed
* *
* @id: S7.3_A7_T3;
* @section: 7.3; * @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; * @description: Insert Line Terminator in var x=y*z;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Line Terminators between operators are allowed * Line Terminators between operators are allowed
* *
* @id: S7.3_A7_T4;
* @section: 7.3; * @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; * @description: Insert Line Terminator in var x=y/z;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Line Terminators between operators are allowed * Line Terminators between operators are allowed
* *
* @id: S7.3_A7_T5;
* @section: 7.3; * @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; * @description: Insert Line Terminator in var x=y%z;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Line Terminators between operators are allowed * Line Terminators between operators are allowed
* *
* @id: S7.3_A7_T6;
* @section: 7.3; * @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; * @description: Insert Line Terminator in var x=y>>z;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Line Terminators between operators are allowed * Line Terminators between operators are allowed
* *
* @id: S7.3_A7_T7;
* @section: 7.3; * @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; * @description: Insert Line Terminator in var x=y<<z;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Line Terminators between operators are allowed * Line Terminators between operators are allowed
* *
* @id: S7.3_A7_T8;
* @section: 7.3; * @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; * @description: Insert Line Terminator in var x=y<z;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Correct interpretation of single line comments * Correct interpretation of single line comments
* *
* @id: S7.4_A1_T1;
* @section: 7.4; * @section: 7.4;
* @path: 07_Lexical_Conventions/7.4_Comments/S7.4_A1_T1.js;
* @description: Create comments with any code; * @description: Create comments with any code;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Correct interpretation of single line comments * Correct interpretation of single line comments
* *
* @id: S7.4_A1_T2;
* @section: 7.4; * @section: 7.4;
* @path: 07_Lexical_Conventions/7.4_Comments/S7.4_A1_T2.js;
* @description: Simple test, create empty comment: ///; * @description: Simple test, create empty comment: ///;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Correct interpretation of multi line comments * Correct interpretation of multi line comments
* *
* @id: S7.4_A2_T1;
* @section: 7.4; * @section: 7.4;
* @path: 07_Lexical_Conventions/7.4_Comments/S7.4_A2_T1.js;
* @description: Create comments with any code; * @description: Create comments with any code;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Correct interpretation of multi line comments * Correct interpretation of multi line comments
* *
* @id: S7.4_A2_T2;
* @section: 7.4; * @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; * @description: Try use /*CHECK#1/. This is not closed multi line comment;
* @negative; * @negative;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Multi line comments cannot nest * Multi line comments cannot nest
* *
* @id: S7.4_A3;
* @section: 7.4; * @section: 7.4;
* @path: 07_Lexical_Conventions/7.4_Comments/S7.4_A3.js;
* @description: Try use nested comments; * @description: Try use nested comments;
* @negative; * @negative;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Single and Multi line comments are used together * Single and Multi line comments are used together
* *
* @id: S7.4_A4_T1;
* @section: 7.4; * @section: 7.4;
* @path: 07_Lexical_Conventions/7.4_Comments/S7.4_A4_T1.js;
* @description: Try use 2 close comment tags; * @description: Try use 2 close comment tags;
* @negative; * @negative;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Single and Multi line comments are used together * Single and Multi line comments are used together
* *
* @id: S7.4_A4_T2;
* @section: 7.4; * @section: 7.4;
* @path: 07_Lexical_Conventions/7.4_Comments/S7.4_A4_T2.js;
* @description: Fist Multi line comment, then Single line comment; * @description: Fist Multi line comment, then Single line comment;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Single and Multi line comments are used together * Single and Multi line comments are used together
* *
* @id: S7.4_A4_T3;
* @section: 7.4; * @section: 7.4;
* @path: 07_Lexical_Conventions/7.4_Comments/S7.4_A4_T3.js;
* @description: Insert Single line comment into Multi line comment; * @description: Insert Single line comment into Multi line comment;
*/ */

View File

@ -4,8 +4,8 @@
/** /**
* Single and Multi line comments are used together * Single and Multi line comments are used together
* *
* @id: S7.4_A4_T4;
* @section: 7.4; * @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; * @description: Try to open Multi line comment at the end of Single comment;
* @negative; * @negative;
*/ */

Some files were not shown because too many files have changed in this diff Show More