(tNodeIdx: number, matchIdx: number)
| 309 | } |
| 310 | |
| 311 | private addMatch(tNodeIdx: number, matchIdx: number) { |
| 312 | if (this.matches === null) { |
| 313 | this.matches = [tNodeIdx, matchIdx]; |
| 314 | } else { |
| 315 | this.matches.push(tNodeIdx, matchIdx); |
| 316 | } |
| 317 | } |
| 318 | } |
| 319 | |
| 320 | /** |
no test coverage detected