mirror of
https://github.com/Doodle3D/Doodle3D-API
synced 2024-12-23 14:13:47 +01:00
71 lines
2.1 KiB
JavaScript
71 lines
2.1 KiB
JavaScript
/* */
|
|
'use strict';
|
|
var $ = require("./$"),
|
|
$def = require("./$.def"),
|
|
BUGGY = require("./$.iter").BUGGY,
|
|
forOf = require("./$.for-of"),
|
|
species = require("./$.species"),
|
|
assertInstance = require("./$.assert").inst;
|
|
module.exports = function(NAME, wrapper, methods, common, IS_MAP, IS_WEAK) {
|
|
var Base = $.g[NAME],
|
|
C = Base,
|
|
ADDER = IS_MAP ? 'set' : 'add',
|
|
proto = C && C.prototype,
|
|
O = {};
|
|
function fixMethod(KEY) {
|
|
var fn = proto[KEY];
|
|
require("./$.redef")(proto, KEY, KEY == 'delete' ? function(a) {
|
|
return fn.call(this, a === 0 ? 0 : a);
|
|
} : KEY == 'has' ? function has(a) {
|
|
return fn.call(this, a === 0 ? 0 : a);
|
|
} : KEY == 'get' ? function get(a) {
|
|
return fn.call(this, a === 0 ? 0 : a);
|
|
} : KEY == 'add' ? function add(a) {
|
|
fn.call(this, a === 0 ? 0 : a);
|
|
return this;
|
|
} : function set(a, b) {
|
|
fn.call(this, a === 0 ? 0 : a, b);
|
|
return this;
|
|
});
|
|
}
|
|
if (!$.isFunction(C) || !(IS_WEAK || !BUGGY && proto.forEach && proto.entries)) {
|
|
C = common.getConstructor(wrapper, NAME, IS_MAP, ADDER);
|
|
require("./$.mix")(C.prototype, methods);
|
|
} else {
|
|
var inst = new C,
|
|
chain = inst[ADDER](IS_WEAK ? {} : -0, 1),
|
|
buggyZero;
|
|
if (!require("./$.iter-detect")(function(iter) {
|
|
new C(iter);
|
|
})) {
|
|
C = wrapper(function(target, iterable) {
|
|
assertInstance(target, C, NAME);
|
|
var that = new Base;
|
|
if (iterable != undefined)
|
|
forOf(iterable, IS_MAP, that[ADDER], that);
|
|
return that;
|
|
});
|
|
C.prototype = proto;
|
|
proto.constructor = C;
|
|
}
|
|
IS_WEAK || inst.forEach(function(val, key) {
|
|
buggyZero = 1 / key === -Infinity;
|
|
});
|
|
if (buggyZero) {
|
|
fixMethod('delete');
|
|
fixMethod('has');
|
|
IS_MAP && fixMethod('get');
|
|
}
|
|
if (buggyZero || chain !== inst)
|
|
fixMethod(ADDER);
|
|
}
|
|
require("./$.cof").set(C, NAME);
|
|
O[NAME] = C;
|
|
$def($def.G + $def.W + $def.F * (C != Base), O);
|
|
species(C);
|
|
species($.core[NAME]);
|
|
if (!IS_WEAK)
|
|
common.setIter(C, NAME, IS_MAP);
|
|
return C;
|
|
};
|