aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/11_Expressions/11.2_Left_Hand_Side_Expressions/11.2.2_The_new_Operator/S11.2.2_A4_T5.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/11_Expressions/11.2_Left_Hand_Side_Expressions/11.2.2_The_new_Operator/S11.2.2_A4_T5.js')
-rw-r--r--test/suite/sputnik_converted/11_Expressions/11.2_Left_Hand_Side_Expressions/11.2.2_The_new_Operator/S11.2.2_A4_T5.js61
1 files changed, 0 insertions, 61 deletions
diff --git a/test/suite/sputnik_converted/11_Expressions/11.2_Left_Hand_Side_Expressions/11.2.2_The_new_Operator/S11.2.2_A4_T5.js b/test/suite/sputnik_converted/11_Expressions/11.2_Left_Hand_Side_Expressions/11.2.2_The_new_Operator/S11.2.2_A4_T5.js
deleted file mode 100644
index 53a7523ca..000000000
--- a/test/suite/sputnik_converted/11_Expressions/11.2_Left_Hand_Side_Expressions/11.2.2_The_new_Operator/S11.2.2_A4_T5.js
+++ /dev/null
@@ -1,61 +0,0 @@
-// Copyright 2009 the Sputnik authors. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/**
-* @name: S11.2.2_A4_T5;
-* @section: 11.2.2;
-* @assertion: If NewExpression or MemberExpression does not implement internal [[Construct]] method, throw TypeError;
-* @description: Checking Math object case;
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S11.2.2_A4_T5",
-
-path: "TestCases/11_Expressions/11.2_Left_Hand_Side_Expressions/11.2.2_The_new_Operator/S11.2.2_A4_T5.js",
-
-assertion: "If NewExpression or MemberExpression does not implement internal [[Construct]] method, throw TypeError",
-
-description: "Checking Math object case",
-
-test: function testcase() {
- //CHECK#1
-try {
- new Math;
- $ERROR('#1: new Math throw TypeError');
-}
-catch (e) {
- if ((e instanceof TypeError) !== true) {
- $ERROR('#1: new Math throw TypeError');
- }
-}
-
-//CHECK#2
-try {
- new new Math();
- $ERROR('#2: new new Math() throw TypeError');
-}
-catch (e) {
- if ((e instanceof TypeError) !== true) {
- $ERROR('#2: new new Math() throw TypeError');
- }
-}
-
-//CHECK#3
-try {
- var x = new Math();
- new x();
- $ERROR('#3: var x = new Math(); new x() throw TypeError');
-}
-catch (e) {
- if ((e instanceof TypeError) !== true) {
- $ERROR('#3: var x = new Math(); new x() throw TypeError');
- }
-}
-
-
- }
-});
-