mirror of
https://github.com/tc39/test262.git
synced 2025-08-28 05:18:32 +02:00
38 lines
1.1 KiB
JavaScript
38 lines
1.1 KiB
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/**
|
|
* Evaluate the production ObjectLiteral: { Identifier : AssignmentExpression}
|
|
*
|
|
* @path ch11/11.1/11.1.5/S11.1.5_A1.4.js
|
|
* @description Checking various properteis and contents of the object defined with "var object = {prop : true}"
|
|
*/
|
|
|
|
var object = {prop : true};
|
|
|
|
//CHECK#1
|
|
if (typeof object !== "object") {
|
|
$ERROR('#1: var object = {prop : true}; typeof object === "object". Actual: ' + (typeof object));
|
|
}
|
|
|
|
//CHECK#2
|
|
if (object instanceof Object !== true) {
|
|
$ERROR('#2: var object = {prop : true}; object instanceof Object === true');
|
|
}
|
|
|
|
//CHECK#3
|
|
if (object.toString !== Object.prototype.toString) {
|
|
$ERROR('#3: var object = {prop : true}; object.toString === Object.prototype.toString. Actual: ' + (object.toString));
|
|
}
|
|
|
|
//CHECK#4
|
|
if (object["prop"] !== true) {
|
|
$ERROR('#4: var object = {prop : true}; object["prop"] === true');
|
|
}
|
|
|
|
//CHECK#5
|
|
if (object.prop !== true) {
|
|
$ERROR('#5: var object = {prop : true}; object.prop === true');
|
|
}
|
|
|