mirror of https://github.com/tc39/test262.git
24 lines
548 B
JavaScript
24 lines
548 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_T2
|
||
|
description: Checking Number case
|
||
|
---*/
|
||
|
|
||
|
//CHECK#1
|
||
|
if (0 instanceof Number) {
|
||
|
$ERROR('#1: 0 is not instanceof Number');
|
||
|
}
|
||
|
|
||
|
//CHECK#2
|
||
|
if (Number(0) instanceof Number) {
|
||
|
$ERROR('#2: Number(0) is not instanceof Number');
|
||
|
}
|
||
|
|
||
|
//CHECK#3
|
||
|
if (new Number instanceof Number !== true) {
|
||
|
$ERROR('#3: new Number instanceof Number');
|
||
|
}
|