aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/10_Execution_Contexts/10.2_Entering_An_Execution_Context/S10.2_A1.1_T1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/10_Execution_Contexts/10.2_Entering_An_Execution_Context/S10.2_A1.1_T1.js')
-rw-r--r--test/suite/sputnik_converted/10_Execution_Contexts/10.2_Entering_An_Execution_Context/S10.2_A1.1_T1.js47
1 files changed, 0 insertions, 47 deletions
diff --git a/test/suite/sputnik_converted/10_Execution_Contexts/10.2_Entering_An_Execution_Context/S10.2_A1.1_T1.js b/test/suite/sputnik_converted/10_Execution_Contexts/10.2_Entering_An_Execution_Context/S10.2_A1.1_T1.js
deleted file mode 100644
index 676e18e55..000000000
--- a/test/suite/sputnik_converted/10_Execution_Contexts/10.2_Entering_An_Execution_Context/S10.2_A1.1_T1.js
+++ /dev/null
@@ -1,47 +0,0 @@
-// Copyright 2009 the Sputnik authors. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/**
- * @name: S10.2_A1.1_T1;
- * @section: 10.2;
- * @assertion: Every function call enters a new execution context;
- * @description: Sequence of function calls;
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S10.2_A1.1_T1",
-
-path: "TestCases/10_Execution_Contexts/10.2_Entering_An_Execution_Context/S10.2_A1.1_T1.js",
-
-assertion: "Every function call enters a new execution context",
-
-description: "Sequence of function calls",
-
-test: function testcase() {
- var y;
-
-function f(){
- var x;
-
- if(x === undefined) {
- x = 0;
- } else {
- x = 1;
- }
-
- return x;
-}
-
-y = f();
-y = f();
-
-if(!(y === 0)){
- $ERROR("#1: Sequenced function calls shares execution context");
-}
-
- }
-});
-