Lines Matching refs:IS_MAP
26854 var IS_MAP = TYPE == 1;
26868 …var target = IS_MAP ? create($this, length) : IS_FILTER || IS_FILTER_REJECT ? create($this, 0) : u…
26874 if (IS_MAP) target[index] = result; // map
27317 getConstructor: function (wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER) {
27328 if (iterable != undefined) iterate(iterable, that[ADDER], { that: that, AS_ENTRIES: IS_MAP });
27433 redefineAll(Prototype, IS_MAP ? {
27459 setStrong: function (Constructor, CONSTRUCTOR_NAME, IS_MAP) {
27496 }, IS_MAP ? 'entries' : 'values', !IS_MAP, true);
27529 var IS_MAP = CONSTRUCTOR_NAME.indexOf('Map') !== -1;
27531 var ADDER = IS_MAP ? 'set' : 'add';
27565 Constructor = common.getConstructor(wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER);
27589 … if (iterable != undefined) iterate(iterable, that[ADDER], { that: that, AS_ENTRIES: IS_MAP });
27599 IS_MAP && fixMethod('get');
27613 if (!IS_WEAK) common.setStrong(Constructor, CONSTRUCTOR_NAME, IS_MAP);