Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
michael@0 | 1 | // Copyright 2009 the Sputnik authors. All rights reserved. |
michael@0 | 2 | // This code is governed by the BSD license found in the LICENSE file. |
michael@0 | 3 | |
michael@0 | 4 | /** |
michael@0 | 5 | * Result of applying "typeof" operator to the object that is native and doesn't implement [[Call]] is "object" |
michael@0 | 6 | * |
michael@0 | 7 | * @path ch11/11.4/11.4.3/S11.4.3_A3.6.js |
michael@0 | 8 | * @description typeof (object without [[Call]]) === "object" |
michael@0 | 9 | */ |
michael@0 | 10 | |
michael@0 | 11 | //CHECK#1 |
michael@0 | 12 | if (typeof this !== "object") { |
michael@0 | 13 | $ERROR('#1: typeof this === "object". Actual: ' + (typeof this)); |
michael@0 | 14 | } |
michael@0 | 15 | |
michael@0 | 16 | //CHECK#2 |
michael@0 | 17 | if (typeof new Object() !== "object") { |
michael@0 | 18 | $ERROR('#2: typeof new Object() === "object". Actual: ' + (typeof new Object())); |
michael@0 | 19 | } |
michael@0 | 20 | |
michael@0 | 21 | //CHECK#3 |
michael@0 | 22 | if (typeof new Array(1,2,3) !== "object") { |
michael@0 | 23 | $ERROR('#3: typeof new Array(1,2,3) === "object". Actual: ' + (typeof new Array(1,2,3))); |
michael@0 | 24 | } |
michael@0 | 25 | |
michael@0 | 26 | //CHECK#4 |
michael@0 | 27 | if (typeof Array(1,2,3) !== "object") { |
michael@0 | 28 | $ERROR('#4: typeof Array(1,2,3) === "object". Actual: ' + (typeof Array(1,2,3))); |
michael@0 | 29 | } |
michael@0 | 30 | |
michael@0 | 31 | //CHECK#5 |
michael@0 | 32 | if (typeof new String("x") !== "object") { |
michael@0 | 33 | $ERROR('#5: typeof new String("x") === "object". Actual: ' + (typeof new String("x"))); |
michael@0 | 34 | } |
michael@0 | 35 | |
michael@0 | 36 | //CHECK#6 |
michael@0 | 37 | if (typeof new Boolean(true) !== "object") { |
michael@0 | 38 | $ERROR('#6: typeof new Boolean(true) === "object". Actual: ' + (typeof new Boolean(true))); |
michael@0 | 39 | } |
michael@0 | 40 | |
michael@0 | 41 | //CHECK#7 |
michael@0 | 42 | if (typeof new Number(1) !== "object") { |
michael@0 | 43 | $ERROR('#7: typeof new Number(1) === "object". Actual: ' + (typeof new Number(1))); |
michael@0 | 44 | } |
michael@0 | 45 | |
michael@0 | 46 | //CHECK#8 |
michael@0 | 47 | //The Math object does not have a [[Construct]] property; |
michael@0 | 48 | //it is not possible to use the Math object as a constructor with the new operator. |
michael@0 | 49 | //The Math object does not have a [[Call]] property; it is not possible to invoke the Math object as a object. |
michael@0 | 50 | if (typeof Math !== "object") { |
michael@0 | 51 | $ERROR('#8: typeof Math === "object". Actual: ' + (typeof Math)); |
michael@0 | 52 | } |
michael@0 | 53 | |
michael@0 | 54 | //CHECK#9 |
michael@0 | 55 | if (typeof new Date() !== "object") { |
michael@0 | 56 | $ERROR('#9: typeof new Date() === "object". Actual: ' + (typeof new Date())); |
michael@0 | 57 | } |
michael@0 | 58 | |
michael@0 | 59 | //CHECK#10 |
michael@0 | 60 | if (typeof new Error() !== "object") { |
michael@0 | 61 | $ERROR('#10: typeof new Error() === "object". Actual: ' + (typeof new Error())); |
michael@0 | 62 | } |
michael@0 | 63 | |
michael@0 | 64 | //CHECK#11 |
michael@0 | 65 | if (typeof new RegExp() !== "object") { |
michael@0 | 66 | $ERROR('#11: typeof new RegExp() === "object". Actual: ' + (typeof new RegExp())); |
michael@0 | 67 | } |
michael@0 | 68 | |
michael@0 | 69 | //CHECK#12 |
michael@0 | 70 | if (typeof RegExp() !== "object") { |
michael@0 | 71 | $ERROR('#12: typeof RegExp() === "object". Actual: ' + (typeof RegExp())); |
michael@0 | 72 | } |
michael@0 | 73 |