mirror of https://github.com/tc39/test262.git
Update %TypedArray% function length
This commit is contained in:
parent
7d715a4ef1
commit
4bdd808d04
|
@ -1,23 +1,22 @@
|
||||||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||||
// This code is governed by the BSD license found in the LICENSE file.
|
// This code is governed by the BSD license found in the LICENSE file.
|
||||||
/*---
|
/*---
|
||||||
es6id: 22.2.2
|
es7id: pending
|
||||||
description: >
|
description: >
|
||||||
TypedArray has a "length" property whose value is 3.
|
TypedArray has a "length" property whose value is 0.
|
||||||
info: >
|
info: >
|
||||||
22.2.2 Properties of the %TypedArray% Intrinsic Object
|
22.2.1.1 %TypedArray% ()
|
||||||
|
|
||||||
Besides a length property whose value is 3 and a name property whose value is
|
The length property of the %TypedArray% constructor function is 0.
|
||||||
"TypedArray", %TypedArray% has the following properties:
|
|
||||||
...
|
...
|
||||||
|
|
||||||
ES6 section 17: Unless otherwise specified, the length property of a built-in
|
ES7 section 17: Unless otherwise specified, the length property of a built-in
|
||||||
Function object has the attributes { [[Writable]]: false, [[Enumerable]]:
|
Function object has the attributes { [[Writable]]: false, [[Enumerable]]:
|
||||||
false, [[Configurable]]: true }.
|
false, [[Configurable]]: true }.
|
||||||
includes: [propertyHelper.js, testTypedArray.js]
|
includes: [propertyHelper.js, testTypedArray.js]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
assert.sameValue(TypedArray.length, 3);
|
assert.sameValue(TypedArray.length, 0);
|
||||||
|
|
||||||
verifyNotEnumerable(TypedArray, 'length');
|
verifyNotEnumerable(TypedArray, 'length');
|
||||||
verifyNotWritable(TypedArray, 'length');
|
verifyNotWritable(TypedArray, 'length');
|
||||||
|
|
Loading…
Reference in New Issue