()
| 57 | * parseCommand/parseCommandRaw for the parser to be available. Idempotent. |
| 58 | */ |
| 59 | export async function ensureInitialized(): Promise<void> { |
| 60 | if (feature('TREE_SITTER_BASH') || feature('TREE_SITTER_BASH_SHADOW')) { |
| 61 | await ensureParserInitialized() |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | export async function parseCommand( |
| 66 | command: string, |
nothing calls this directly
no test coverage detected