Searched refs:methodTypes (Results 1 – 1 of 1) sorted by relevance
/third_party/node/deps/npm/node_modules/protoduck/ |
D | index.js | 156 const methodTypes = duck._gfTypes[name].map(function (typeIdx) { 159 for (let i = methodTypes.length - 1; i >= 0; i--) { 160 if (methodTypes[i] === undefined) { 161 methodTypes.pop() 185 ? duck._metaobject.addMethod(duck, target, name, methodTypes, fn) 186 : _metaAddMethod(duck, target, name, methodTypes, fn) 291 function _metaAddMethod (duck, target, name, methodTypes, fn) { argument 292 return target[name].add(methodTypes, fn)
|