michael@0: // Copyright 2009 the Sputnik authors. All rights reserved. michael@0: // This code is governed by the BSD license found in the LICENSE file. michael@0: michael@0: /** michael@0: * Evaluate the production ObjectLiteral: { NumericLiteral : AssignmentExpression} michael@0: * michael@0: * @path ch11/11.1/11.1.5/S11.1.5_A1.2.js michael@0: * @description Checking various properteis and contents of the object defined with "var object = {1 : true}" michael@0: */ michael@0: michael@0: var object = {1 : true}; michael@0: michael@0: //CHECK#1 michael@0: if (typeof object !== "object") { michael@0: $ERROR('#1: var object = {1 : true}; typeof object === "object". Actual: ' + (typeof object)); michael@0: } michael@0: michael@0: //CHECK#2 michael@0: if (object instanceof Object !== true) { michael@0: $ERROR('#2: var object = {1 : true}; object instanceof Object === true'); michael@0: } michael@0: michael@0: //CHECK#3 michael@0: if (object.toString !== Object.prototype.toString) { michael@0: $ERROR('#3: var object = {1 : true}; object.toString === Object.prototype.toString. Actual: ' + (object.toString)); michael@0: } michael@0: michael@0: //CHECK#4 michael@0: if (object[1] !== true) { michael@0: $ERROR('#4: var object = {1 : true}; object[1] === true'); michael@0: } michael@0: michael@0: //CHECK#5 michael@0: if (object["1"] !== true) { michael@0: $ERROR('#5: var object = {1 : true}; object["1"] === true'); michael@0: } michael@0: michael@0: