aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/ch07/7.9/S7.9_A6.4_T1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/ch07/7.9/S7.9_A6.4_T1.js')
-rw-r--r--test/suite/ch07/7.9/S7.9_A6.4_T1.js15
1 files changed, 7 insertions, 8 deletions
diff --git a/test/suite/ch07/7.9/S7.9_A6.4_T1.js b/test/suite/ch07/7.9/S7.9_A6.4_T1.js
index 44169a23f..f8d2ac695 100644
--- a/test/suite/ch07/7.9/S7.9_A6.4_T1.js
+++ b/test/suite/ch07/7.9/S7.9_A6.4_T1.js
@@ -1,16 +1,15 @@
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
-/**
- * Check For Statement for automatic semicolon insertion
- *
- * @path ch07/7.9/S7.9_A6.4_T1.js
- * @description Three semicolons. For header is (false semicolon false semicolon false semicolon)
- * @negative
- */
+/*---
+info: Check For Statement for automatic semicolon insertion
+description: >
+ Three semicolons. For header is (false semicolon false semicolon
+ false semicolon)
+flags: [negative]
+---*/
//CHECK#1
for(false;false;false;) {
break;
}
-