mirror of https://github.com/tc39/test262.git
24 lines
575 B
JavaScript
24 lines
575 B
JavaScript
|
// Copyright 2009 the Sputnik authors. All rights reserved.
|
||
|
// This code is governed by the BSD license found in the LICENSE file.
|
||
|
|
||
|
/*---
|
||
|
info: Only constructor call (with "new" keyword) makes instance
|
||
|
es5id: 11.8.6_A4_T1
|
||
|
description: Checking Boolean case
|
||
|
---*/
|
||
|
|
||
|
//CHECK#1
|
||
|
if (false instanceof Boolean) {
|
||
|
$ERROR('#1: false is not instanceof Boolean');
|
||
|
}
|
||
|
|
||
|
//CHECK#2
|
||
|
if (Boolean(false) instanceof Boolean) {
|
||
|
$ERROR('#2: Boolean(false) is not instanceof Boolean');
|
||
|
}
|
||
|
|
||
|
//CHECK#3
|
||
|
if (new Boolean instanceof Boolean !== true) {
|
||
|
$ERROR('#3: new Boolean instanceof Boolean');
|
||
|
}
|