aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/ch07/7.6/S7.6_A1.3_T3.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/ch07/7.6/S7.6_A1.3_T3.js')
-rw-r--r--test/suite/ch07/7.6/S7.6_A1.3_T3.js11
1 files changed, 4 insertions, 7 deletions
diff --git a/test/suite/ch07/7.6/S7.6_A1.3_T3.js b/test/suite/ch07/7.6/S7.6_A1.3_T3.js
index e3a8361c2..a5213ec30 100644
--- a/test/suite/ch07/7.6/S7.6_A1.3_T3.js
+++ b/test/suite/ch07/7.6/S7.6_A1.3_T3.js
@@ -1,12 +1,10 @@
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
-/**
- * IdentifierStart :: _
- *
- * @path ch07/7.6/S7.6_A1.3_T3.js
- * @description The _ as unicode character \u005F
- */
+/*---
+info: "IdentifierStart :: _"
+description: The _ as unicode character \u005F
+---*/
//CHECK#1
var identifier = String.fromCharCode(0x005F);
@@ -19,4 +17,3 @@ if (eval(identifier + "===1") !== true) {
if ("_" !== String.fromCharCode(0x005F)) {
$ERROR('#2: "_" === String.fromCharCode(0x005F)');
}
-