(input: string)
| 30 | } |
| 31 | |
| 32 | public static parse(input: string): Ast.Node[] { |
| 33 | if (Parser.instance == null) { |
| 34 | Parser.instance = new Parser(); |
| 35 | } |
| 36 | return Parser.instance.parse(input); |
| 37 | } |
| 38 | |
| 39 | public addPlugin(type: PluginType, plugin: ParserPlugin): void { |
| 40 | switch (type) { |
no test coverage detected