aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/13_Function_Definition/13.0_Chapter/S13.0_A15_T1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/13_Function_Definition/13.0_Chapter/S13.0_A15_T1.js')
-rw-r--r--test/suite/sputnik_converted/13_Function_Definition/13.0_Chapter/S13.0_A15_T1.js38
1 files changed, 0 insertions, 38 deletions
diff --git a/test/suite/sputnik_converted/13_Function_Definition/13.0_Chapter/S13.0_A15_T1.js b/test/suite/sputnik_converted/13_Function_Definition/13.0_Chapter/S13.0_A15_T1.js
deleted file mode 100644
index 504443d15..000000000
--- a/test/suite/sputnik_converted/13_Function_Definition/13.0_Chapter/S13.0_A15_T1.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: S13_A15_T1;
-* @section: 13;
-* @assertion: ''arguments'' variable overrides ActivationObject.arguments;
-* @description: Declaring a function with "__func(arguments)";
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S13.0_A15_T1",
-
-path: "TestCases/13_Function_Definition/13.0_Chapter/S13.0_A15_T1.js",
-
-assertion: "\'\'arguments\'\' variable overrides ActivationObject.arguments",
-
-description: "Declaring a function with \"__func(arguments)\"",
-
-test: function testcase() {
- function __func(arguments){
- return arguments;
-};
-
-//////////////////////////////////////////////////////////////////////////////
-//CHECK#1
-if (__func(42) !== 42) {
- $ERROR('#1: "arguments" variable overrides ActivationObject.arguments');
-}
-//
-//////////////////////////////////////////////////////////////////////////////
-
- }
-});
-