(filter, withCategories)
| 324 | |
| 325 | class FunctionListTree { |
| 326 | constructor(filter, withCategories) { |
| 327 | if (withCategories) { |
| 328 | let { categories, root } = buildCategoryTreeAndLookup(); |
| 329 | this.tree = root; |
| 330 | this.categories = categories; |
| 331 | } else { |
| 332 | this.tree = createEmptyNode("root"); |
| 333 | this.categories = null; |
| 334 | } |
| 335 | |
| 336 | this.codeVisited = []; |
| 337 | this.filter = filter; |
| 338 | } |
| 339 | |
| 340 | addStack(file, tickIndex) { |
| 341 | let stack = file.ticks[tickIndex].s; |
nothing calls this directly
no test coverage detected