2019-10-08 21:40:54 +02:00
|
|
|
// Copyright 2019 Ron Buckton. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
|
|
|
/*---
|
|
|
|
description: The "indices" property is an Array.
|
|
|
|
esid: sec-makeindicesarray
|
|
|
|
features: [regexp-match-indices]
|
|
|
|
info: |
|
2021-01-15 08:06:42 +01:00
|
|
|
MakeIndicesArray ( S, indices, groupNames, hasGroups )
|
2019-10-08 21:40:54 +02:00
|
|
|
6. Set _A_ to ! ArrayCreate(_n_).
|
|
|
|
---*/
|
|
|
|
|
2021-01-15 08:06:42 +01:00
|
|
|
let match = /a/d.exec("a");
|
2019-10-08 21:40:54 +02:00
|
|
|
let indices = match.indices;
|
|
|
|
|
|
|
|
// `indices` is an array
|
|
|
|
assert.sameValue(Object.getPrototypeOf(indices), Array.prototype);
|
2019-11-11 05:11:18 +01:00
|
|
|
assert(Array.isArray(indices));
|