2015-07-16 00:45:38 +02:00
|
|
|
// Copyright (C) 2015 the V8 project authors. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
2017-06-27 23:12:06 +02:00
|
|
|
esid: sec-array.from
|
2015-07-16 00:45:38 +02:00
|
|
|
description: >
|
|
|
|
`this` value of mapping function in non-strict mode (traversed via iterator)
|
2018-01-05 18:26:51 +01:00
|
|
|
info: |
|
2015-07-16 00:45:38 +02:00
|
|
|
[...]
|
|
|
|
2. If mapfn is undefined, let mapping be false.
|
|
|
|
3. else
|
|
|
|
a. If IsCallable(mapfn) is false, throw a TypeError exception.
|
|
|
|
b. If thisArg was supplied, let T be thisArg; else let T be undefined.
|
|
|
|
c. Let mapping be true
|
|
|
|
[...]
|
|
|
|
6. If usingIterator is not undefined, then
|
|
|
|
[...]
|
|
|
|
g. Repeat
|
|
|
|
[...]
|
|
|
|
vii. If mapping is true, then
|
|
|
|
1. Let mappedValue be Call(mapfn, T, «nextValue, k»).
|
|
|
|
features: [Symbol.iterator]
|
|
|
|
flags: [noStrict]
|
|
|
|
---*/
|
|
|
|
|
|
|
|
var thisVals = [];
|
2018-02-15 23:40:02 +01:00
|
|
|
var nextResult = {
|
|
|
|
done: false,
|
|
|
|
value: {}
|
|
|
|
};
|
|
|
|
var nextNextResult = {
|
|
|
|
done: false,
|
|
|
|
value: {}
|
|
|
|
};
|
2015-07-16 00:45:38 +02:00
|
|
|
var mapFn = function() {
|
|
|
|
thisVals.push(this);
|
|
|
|
};
|
|
|
|
var items = {};
|
2018-02-15 23:40:02 +01:00
|
|
|
var global = function() {
|
|
|
|
return this;
|
|
|
|
}();
|
2015-07-16 00:45:38 +02:00
|
|
|
|
|
|
|
items[Symbol.iterator] = function() {
|
|
|
|
return {
|
|
|
|
next: function() {
|
|
|
|
var result = nextResult;
|
|
|
|
nextResult = nextNextResult;
|
2018-02-15 23:40:02 +01:00
|
|
|
nextNextResult = {
|
|
|
|
done: true
|
|
|
|
};
|
2015-07-16 00:45:38 +02:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
Array.from(items, mapFn);
|
|
|
|
|
2021-08-10 23:51:54 +02:00
|
|
|
assert.sameValue(thisVals.length, 2, 'The value of thisVals.length is expected to be 2');
|
|
|
|
assert.sameValue(thisVals[0], global, 'The value of thisVals[0] is expected to equal the value of global');
|
|
|
|
assert.sameValue(thisVals[1], global, 'The value of thisVals[1] is expected to equal the value of global');
|