Browse Source

JSY-27224 性能

research/test
Lee94 2 years ago
parent
commit
2772ef6d14
  1. 4
      src/core/structure/tree.js

4
src/core/structure/tree.js

@ -127,7 +127,9 @@
continue;
}
if (temp != null) {
queue = queue.concat(temp.getChildren());
BI.each(temp.getChildren(), function(_i, t) {
queue.push(t);
})
}
}
},

Loading…
Cancel
Save