mirror of
				https://github.com/tc39/test262.git
				synced 2025-11-03 21:24:30 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			925 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			925 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// Copyright 2009 the Sputnik authors.  All rights reserved.
 | 
						|
// This code is governed by the BSD license found in the LICENSE file.
 | 
						|
 | 
						|
/*---
 | 
						|
info: "Evaluate the production ObjectLiteral: { }"
 | 
						|
es5id: 11.1.5_A1.1
 | 
						|
description: >
 | 
						|
    Checking various properteis of the object defined with "var object
 | 
						|
    = {}"
 | 
						|
---*/
 | 
						|
 | 
						|
var object = {};
 | 
						|
 | 
						|
//CHECK#1
 | 
						|
if (typeof object !== "object") {
 | 
						|
  $ERROR('#1: var object = {}; typeof object === "object". Actual: ' + (typeof object));
 | 
						|
}
 | 
						|
 | 
						|
//CHECK#2
 | 
						|
if (object instanceof Object !== true) {
 | 
						|
  $ERROR('#2: var object = {}; object instanceof Object === true');
 | 
						|
}
 | 
						|
 | 
						|
//CHECK#3
 | 
						|
if (object.toString !== Object.prototype.toString) {
 | 
						|
  $ERROR('#3: var object = {}; object.toString === Object.prototype.toString. Actual: ' + (object.toString));
 | 
						|
}
 | 
						|
 | 
						|
//CHECK#4
 | 
						|
if (object.toString() !== "[object Object]") {
 | 
						|
  $ERROR('#4: var object = {}; object.toString === "[object Object]". Actual: ' + (object.toString));
 | 
						|
}
 |