aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/12_Statement/12.6_Iteration_Statements/12.6.4_The_for_in_Statement/S12.6.4_A5.1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/12_Statement/12.6_Iteration_Statements/12.6.4_The_for_in_Statement/S12.6.4_A5.1.js')
-rw-r--r--test/suite/sputnik_converted/12_Statement/12.6_Iteration_Statements/12.6.4_The_for_in_Statement/S12.6.4_A5.1.js60
1 files changed, 0 insertions, 60 deletions
diff --git a/test/suite/sputnik_converted/12_Statement/12.6_Iteration_Statements/12.6.4_The_for_in_Statement/S12.6.4_A5.1.js b/test/suite/sputnik_converted/12_Statement/12.6_Iteration_Statements/12.6.4_The_for_in_Statement/S12.6.4_A5.1.js
deleted file mode 100644
index b144eff3b..000000000
--- a/test/suite/sputnik_converted/12_Statement/12.6_Iteration_Statements/12.6.4_The_for_in_Statement/S12.6.4_A5.1.js
+++ /dev/null
@@ -1,60 +0,0 @@
-// Copyright 2009 the Sputnik authors. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/**
-* @name: S12.6.4_A5.1;
-* @section: 12.6.4;
-* @assertion: The production IterationStatement: "for (var VariableDeclarationNoIn in Expression) Statement";
-* @description: Using hierarchical Object as an Expression is appropriate. The depth is two;
-*/
-
-
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S12.6.4_A5.1",
-
-path: "TestCases/12_Statement/12.6_Iteration_Statements/12.6.4_The_for_in_Statement/S12.6.4_A5.1.js",
-
-assertion: "The production IterationStatement: \"for (var VariableDeclarationNoIn in Expression) Statement\"",
-
-description: "Using hierarchical Object as an Expression is appropriate. The depth is two",
-
-test: function testcase() {
- __hash__map={a:{aa:1,ab:2,ac:3,ad:4},b:{ba:1,bb:2,bc:3,bd:4},c:{ca:1,cb:2,cc:3,cd:4},d:{da:1,db:2,dc:3,dd:4}};
-
-__arr = "";
-
-for(var __key in __hash__map){
- for (var __ind in __hash__map[__key]){
- __arr+=("" + __ind + __hash__map[__key][__ind]);
- }
-}
-
-if(!(
-(__arr.indexOf("aa1")!==-1)&
-(__arr.indexOf("ab2")!==-1)&
-(__arr.indexOf("ac3")!==-1)&
-(__arr.indexOf("ad4")!==-1)&
-(__arr.indexOf("ba1")!==-1)&
-(__arr.indexOf("bb2")!==-1)&
-(__arr.indexOf("bc3")!==-1)&
-(__arr.indexOf("bd4")!==-1)&
-(__arr.indexOf("ca1")!==-1)&
-(__arr.indexOf("cb2")!==-1)&
-(__arr.indexOf("cc3")!==-1)&
-(__arr.indexOf("cd4")!==-1)&
-(__arr.indexOf("da1")!==-1)&
-(__arr.indexOf("db2")!==-1)&
-(__arr.indexOf("dc3")!==-1)&
-(__arr.indexOf("dd4")!==-1)
-)) $ERROR('#1: The nested for-in Statement applied to hierarchial object works properly as described in the Standard');
-
-
-
-
- }
-});
-