aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/S7.9_A5.5_T4.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/S7.9_A5.5_T4.js')
-rw-r--r--test/suite/sputnik_converted/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/S7.9_A5.5_T4.js38
1 files changed, 0 insertions, 38 deletions
diff --git a/test/suite/sputnik_converted/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/S7.9_A5.5_T4.js b/test/suite/sputnik_converted/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/S7.9_A5.5_T4.js
deleted file mode 100644
index c6d4905bb..000000000
--- a/test/suite/sputnik_converted/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/S7.9_A5.5_T4.js
+++ /dev/null
@@ -1,38 +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_A5.5_T4;
- * @section: 7.9, 12.4, 11.2.5;
- * @assertion: Check Function Expression for automatic semicolon insertion;
- * @description: Insert some LineTerminators into function body;
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S7.9_A5.5_T4",
-
-path: "TestCases/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/S7.9_A5.5_T4.js",
-
-assertion: "Check Function Expression for automatic semicolon insertion",
-
-description: "Insert some LineTerminators into function body",
-
-test: function testcase() {
- //CHECK#1
-var x =
-1 + (function (t){return {a:t
-}
-})
-(2 + 3).
-a
-
-if (x !== 6) {
- $ERROR('#1: Check Function Expression for automatic semicolon insertion');
-}
-
- }
-});
-