()
| 119 | let openTag: string | null = null; // e.g. tsx{path=src/App.tsx} |
| 120 | |
| 121 | const flushText = () => { |
| 122 | if (textBuffer.length > 0) { |
| 123 | segments.push({ type: "text", content: textBuffer.join("\n") }); |
| 124 | textBuffer = []; |
| 125 | } |
| 126 | }; |
| 127 | |
| 128 | const parseTag = parseFenceTag; |
| 129 |
no outgoing calls
no test coverage detected