aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/7.9.2_Examples_of_Automatic_Semicolon_Insertion/S7.9.2_A1_T7.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/7.9.2_Examples_of_Automatic_Semicolon_Insertion/S7.9.2_A1_T7.js')
-rw-r--r--test/suite/sputnik_converted/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/7.9.2_Examples_of_Automatic_Semicolon_Insertion/S7.9.2_A1_T7.js39
1 files changed, 0 insertions, 39 deletions
diff --git a/test/suite/sputnik_converted/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/7.9.2_Examples_of_Automatic_Semicolon_Insertion/S7.9.2_A1_T7.js b/test/suite/sputnik_converted/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/7.9.2_Examples_of_Automatic_Semicolon_Insertion/S7.9.2_A1_T7.js
deleted file mode 100644
index 891abdf48..000000000
--- a/test/suite/sputnik_converted/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/7.9.2_Examples_of_Automatic_Semicolon_Insertion/S7.9.2_A1_T7.js
+++ /dev/null
@@ -1,39 +0,0 @@
-// Copyright 2009 the Sputnik authors. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/**
- * @name: S7.9.2_A1_T7;
- * @section: 7.9.2;
- * @assertion: Check examples for automatic semicolon insertion from the Standart;
- * @description: a=b+c \n (d+e).print() is a valid sentence in the ECMAScript grammar,
- * and automatic semicolon insertion not run;
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S7.9.2_A1_T7",
-
-path: "TestCases/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/7.9.2_Examples_of_Automatic_Semicolon_Insertion/S7.9.2_A1_T7.js",
-
-assertion: "Check examples for automatic semicolon insertion from the Standart",
-
-description: "a=b+c \\n (d+e).print() is a valid sentence in the ECMAScript grammar,",
-
-test: function testcase() {
- //CHECK#1
-function c (a){
- return 2*a;
-}
-
-var a=1,b=2,d=4,e=5;
-
-a=b+c
-(d+e)
-
-if (a !== 20) $ERROR('#1: Automatic semicolon insertion work wrong');
-
- }
-});
-