Merge pull request #1686 from rhuanjl/proxyFlat

Array.prototype.{flat,flatMap} property access count
This commit is contained in:
Leo Balter 2018-08-20 10:44:16 -04:00 committed by GitHub
commit d263e2ccc9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,24 @@
// Copyright (C) 2018 Richard Lawrence. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-array.prototype.flat
description: >
properties are accessed correct number of times by .flat
features: [Array.prototype.flat]
includes: [compareArray.js]
---*/
const getCalls = [], hasCalls = [];
const handler = {
get : function (t, p, r) { getCalls.push(p); return Reflect.get(t, p, r); },
has : function (t, p, r) { hasCalls.push(p); return Reflect.has(t, p, r); }
}
const tier2 = new Proxy([4, 3], handler);
const tier1 = new Proxy([2, [3, [4, 2], 2], 5, tier2, 6], handler);
Array.prototype.flat.call(tier1, 3);
assert.compareArray(getCalls, ["length", "constructor", "0", "1", "2", "3", "length", "0", "1", "4"], 'getProperty by .flat should occur exactly once per property and once for length and constructor');
assert.compareArray(hasCalls, ["0", "1", "2", "3", "0", "1", "4"], 'hasProperty by .flat should occur exactly once per property');

View File

@ -0,0 +1,24 @@
// Copyright (C) 2018 Richard Lawrence. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-array.prototype.flatMap
description: >
properties are accessed correct number of times by .flatMap
features: [Array.prototype.flat]
includes: [compareArray.js]
---*/
const getCalls = [], hasCalls = [];
const handler = {
get : function (t, p, r) { getCalls.push(p); return Reflect.get(t, p, r); },
has : function (t, p, r) { hasCalls.push(p); return Reflect.has(t, p, r); }
}
const tier2 = new Proxy([4, 3], handler);
const tier1 = new Proxy([2, [3, 4, 2, 2], 5, tier2, 6], handler);
Array.prototype.flatMap.call(tier1, function(a){ return a; });
assert.compareArray(getCalls, ["length", "constructor", "0", "1", "2", "3", "length", "0", "1", "4"], 'getProperty by .flatMap should occur exactly once per property and once for length and constructor');
assert.compareArray(hasCalls, ["0", "1", "2", "3", "0", "1", "4"], 'hasProperty by .flatMap should occur exactly once per property');