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.
6 Array.of.length value and property descriptor
10 The length property of the of function is 0.
11 includes: [propertyHelper.js]
16 'The value of Array.of.length is expected to be 0'
19 verifyNotEnumerable(Array.of, 'length');
20 verifyNotWritable(Array.of, 'length');
21 verifyConfigurable(Array.of, 'length');