Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / Reflect / setPrototypeOf / length.js
blob4b7b7683170af5bf1c1ed10417ff2a3bf7f11b9d
1 // Copyright (C) 2015 the V8 project authors. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
3 /*---
4 es6id: 26.1.14
5 description: >
6   Reflect.setPrototypeOf.length value and property descriptor
7 includes: [propertyHelper.js]
8 features: [Reflect, Reflect.setPrototypeOf]
9 ---*/
11 verifyProperty(Reflect.setPrototypeOf, "length", {
12   value: 2,
13   writable: false,
14   enumerable: false,
15   configurable: true
16 });
18 reportCompare(0, 0);