Lines Matching refs:stack

7432         stack: this._stack.length,
7453 if (this._stack.length > r.stack) {
7454 this._stack.splice(r.stack, this._stack.length - r.stack);
56723 function baseIsEqual(value, other, customizer, bitmask, stack) {
56732 return baseIsEqualDeep(value, other, baseIsEqual, customizer, bitmask, stack);
56751 function baseIsEqualDeep(object, other, equalFunc, customizer, bitmask, stack) {
56772 stack || (stack = new Stack());
56773 …er, equalFunc, customizer, bitmask, stack) : equalByTag(object, other, objTag, equalFunc, customiz…
56783 stack || (stack = new Stack());
56784 return equalFunc(objUnwrapped, othUnwrapped, customizer, bitmask, stack);
56792 stack || (stack = new Stack());
56793 return equalObjects(object, other, equalFunc, customizer, bitmask, stack);
56837 var stack = new Stack();
56840 var result = customizer(objValue, srcValue, key, object, source, stack);
56843 …(srcValue, objValue, customizer, UNORDERED_COMPARE_FLAG | PARTIAL_COMPARE_FLAG, stack) : result)) {
57113 function equalArrays(array, other, equalFunc, customizer, bitmask, stack) {
57123 var stacked = stack.get(array);
57125 if (stacked && stack.get(other)) {
57132 stack.set(array, other);
57133 stack.set(other, array); // Ignore non-index properties.
57140 …r(othValue, arrValue, index, other, array, stack) : customizer(arrValue, othValue, index, array, o…
57155 …thIndex) && (arrValue === othValue || equalFunc(arrValue, othValue, customizer, bitmask, stack))) {
57162 …} else if (!(arrValue === othValue || equalFunc(arrValue, othValue, customizer, bitmask, stack))) {
57168 stack['delete'](array);
57169 stack['delete'](other);
57192 function equalByTag(object, other, tag, equalFunc, customizer, bitmask, stack) {
57238 var stacked = stack.get(object);
57246 stack.set(object, other);
57247 … var result = equalArrays(convert(object), convert(other), equalFunc, customizer, bitmask, stack);
57248 stack['delete'](object);
57276 function equalObjects(object, other, equalFunc, customizer, bitmask, stack) {
57298 var stacked = stack.get(object);
57300 if (stacked && stack.get(other)) {
57305 stack.set(object, other);
57306 stack.set(other, object);
57315 …zer(othValue, objValue, key, other, object, stack) : customizer(objValue, othValue, key, object, o…
57319 …? objValue === othValue || equalFunc(objValue, othValue, customizer, bitmask, stack) : compared)) {
57336 stack['delete'](object);
57337 stack['delete'](other);
59253 function baseIsEqual(value, other, bitmask, customizer, stack) {
59262 return baseIsEqualDeep(value, other, bitmask, customizer, baseIsEqual, stack);
59280 function baseIsEqualDeep(object, other, bitmask, customizer, equalFunc, stack) {
59301 stack || (stack = new Stack());
59302 …er, bitmask, customizer, equalFunc, stack) : equalByTag(object, other, objTag, bitmask, customizer…
59312 stack || (stack = new Stack());
59313 return equalFunc(objUnwrapped, othUnwrapped, bitmask, customizer, stack);
59321 stack || (stack = new Stack());
59322 return equalObjects(object, other, bitmask, customizer, equalFunc, stack);
59393 function equalArrays(array, other, bitmask, customizer, equalFunc, stack) {
59403 var stacked = stack.get(array);
59405 if (stacked && stack.get(other)) {
59412 stack.set(array, other);
59413 stack.set(other, array); // Ignore non-index properties.
59420 …r(othValue, arrValue, index, other, array, stack) : customizer(arrValue, othValue, index, array, o…
59435 …thIndex) && (arrValue === othValue || equalFunc(arrValue, othValue, bitmask, customizer, stack))) {
59442 …} else if (!(arrValue === othValue || equalFunc(arrValue, othValue, bitmask, customizer, stack))) {
59448 stack['delete'](array);
59449 stack['delete'](other);
59471 function equalByTag(object, other, tag, bitmask, customizer, equalFunc, stack) {
59517 var stacked = stack.get(object);
59525 stack.set(object, other);
59526 … var result = equalArrays(convert(object), convert(other), bitmask, customizer, equalFunc, stack);
59527 stack['delete'](object);
59554 function equalObjects(object, other, bitmask, customizer, equalFunc, stack) {
59576 var stacked = stack.get(object);
59578 if (stacked && stack.get(other)) {
59583 stack.set(object, other);
59584 stack.set(other, object);
59593 …zer(othValue, objValue, key, other, object, stack) : customizer(objValue, othValue, key, object, o…
59597 …? objValue === othValue || equalFunc(objValue, othValue, bitmask, customizer, stack) : compared)) {
59614 stack['delete'](object);
59615 stack['delete'](other);