()
| 219 | |
| 220 | class RuntimeCallTreeProcessor { |
| 221 | constructor() { |
| 222 | this.tree = createEmptyNode("root"); |
| 223 | this.tree.delayedExpansion = { frameList : [], ascending : false }; |
| 224 | } |
| 225 | |
| 226 | addStack(file, tickIndex) { |
| 227 | this.tree.ticks++; |
nothing calls this directly
no test coverage detected