aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/ch11/11.13/11.13.2/S11.13.2_A4.6_T2.9.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/ch11/11.13/11.13.2/S11.13.2_A4.6_T2.9.js')
-rw-r--r--test/suite/ch11/11.13/11.13.2/S11.13.2_A4.6_T2.9.js13
1 files changed, 6 insertions, 7 deletions
diff --git a/test/suite/ch11/11.13/11.13.2/S11.13.2_A4.6_T2.9.js b/test/suite/ch11/11.13/11.13.2/S11.13.2_A4.6_T2.9.js
index 2b0820a85..a02c398e1 100644
--- a/test/suite/ch11/11.13/11.13.2/S11.13.2_A4.6_T2.9.js
+++ b/test/suite/ch11/11.13/11.13.2/S11.13.2_A4.6_T2.9.js
@@ -1,12 +1,12 @@
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
-/**
- * The production x <<= y is the same as x = x << y
- *
- * @path ch11/11.13/11.13.2/S11.13.2_A4.6_T2.9.js
- * @description Type(x) is different from Type(y) and both types vary between Boolean (primitive or object) and Null
- */
+/*---
+info: The production x <<= y is the same as x = x << y
+description: >
+ Type(x) is different from Type(y) and both types vary between
+ Boolean (primitive or object) and Null
+---*/
//CHECK#1
x = true;
@@ -35,4 +35,3 @@ x <<= new Boolean(true);
if (x !== 0) {
$ERROR('#4: x = null; x <<= new Boolean(true); x === 0. Actual: ' + (x));
}
-