()
| 132 | constructor() {} |
| 133 | |
| 134 | private getParser(): TreeSitterParser | null { |
| 135 | if (this.parser) {return this.parser;} |
| 136 | const parser = createPythonParser(); |
| 137 | if (parser) { |
| 138 | this.parser = parser; |
| 139 | } |
| 140 | return parser; |
| 141 | } |
| 142 | |
| 143 | /** |
| 144 | * Configure parser behavior flags for forward compatibility. |
no test coverage detected