(depth: number)
| 102 | this.didResolve = true |
| 103 | |
| 104 | const ascend = (depth: number) => { |
| 105 | while (ancestors.length > depth) { |
| 106 | const finished = ancestors.pop()! |
| 107 | finished.item.children.replace(finished.children) |
| 108 | } |
| 109 | } |
| 110 | |
| 111 | parseMarkdown(content, { |
| 112 | onTest: (range, a, operator, b, expected) => { |
nothing calls this directly
no outgoing calls
no test coverage detected