(filter, isBottomUp)
| 244 | |
| 245 | class PlainCallTreeProcessor { |
| 246 | constructor(filter, isBottomUp) { |
| 247 | this.filter = filter; |
| 248 | this.tree = createEmptyNode("root"); |
| 249 | this.tree.delayedExpansion = { frameList : [], ascending : isBottomUp }; |
| 250 | this.isBottomUp = isBottomUp; |
| 251 | } |
| 252 | |
| 253 | addStack(file, tickIndex) { |
| 254 | let stack = file.ticks[tickIndex].s; |
nothing calls this directly
no test coverage detected