mirror of
https://github.com/tc39/test262.git
synced 2025-09-28 20:48:43 +02:00
- Add missing noStrict flags when tests explicitly require non-strict semantics (e.g. unqualified delete, with statement) - Change `throw new Exception(...)` to `$ERROR(...)` in call/* - Replace dynamic strict mode check with noStrict flag in call/11.2.3-3_8 - Align assignment/11.13.1_A3.1 with 11.13.1_A3.2 to avoid creating implicit global variable - Split test into multiple files when undeclared variable are under test - addition/S11.6.1_A2.4_T3 - division/11.5.2_A2.4_T3 - does-not-equals/11.9.2_A2.4_T3 - equals/S11.9.1_A2.4_T3 - greater-than/S11.8.2_A2.4_T3 - greater-than-or-equal/S11.8.4_A2.4_T3 - in/S11.8.7_A2.4_T3 - instanceof/11.8.6_A2.4_T3 - left-shift/S11.7.1_A2.4_T3 - less-than/S11.8.1_A2.4_T3 - less-than-or-equal/S11.8.3_A2.4_T3 - modulus/S11.5.3_A2.4_T3 - multiplication/11.5.1_A2.4_T3 - right-shift/11.7.2_A2.4_T3 - strict-does-not-equals/11.9.5_A2.4_T3 - strict-equals/11.9.4_A2.4_T3 - subtraction/11.6.2_A2.4_T3 - unsigned-right-shift/11.7.3_A2.4_T3 - Add declaration when implicit global variable creation not part of the test - assignment/11.13.1_A4_T1 - compound-assignment/S11.13.2_A3.1_T* - compound-assignment/S11.13.2_A3.2_T* - grouping/11.1.6_A3_T5 - instanceof/S15.3.5.3_* - Split test into multiple files when unqualified delete is used - delete/S11.4.1_A2.2_T1.js - delete/11.4.1_A3.2 - grouping/S11.1.6_A2 - grouping/S11.1.6_A3_T6
29 lines
1.0 KiB
JavaScript
29 lines
1.0 KiB
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
info: >
|
|
Assume F is a Function object. When the [[HasInstance]] method of F is called with value V and V is an object, the following steps are taken:
|
|
i) Call the [[Get]] method of F with property name "prototype".
|
|
ii) Let O be Result(i) and O is an object.
|
|
iii) Let V be the value of the [[Prototype]] property of V.
|
|
iv) If V is null, return false.
|
|
v) If O and V refer to the same object or if they refer to objects joined to each other (13.1.2), return true.
|
|
vi) Go to step iii)
|
|
es5id: 15.3.5.3_A3_T1
|
|
description: F.prototype.type is 1, and V is new F
|
|
---*/
|
|
|
|
var FACTORY;
|
|
FACTORY = Function("this.name=\"root\"");
|
|
|
|
FACTORY.prototype.type=1;
|
|
|
|
var instance;
|
|
instance = new FACTORY;
|
|
|
|
//CHECK#1
|
|
if (!(instance instanceof FACTORY)) {
|
|
$ERROR('#1: If O and V refer to the same object or if they refer to objects joined to each other (13.1.2), return true');
|
|
}
|