(name: SupportedLang)
| 68 | } |
| 69 | |
| 70 | public async getParserForLang(name: SupportedLang): Promise<Parser> { |
| 71 | const resources = await this.getResources(name); |
| 72 | return resources.parser; |
| 73 | } |
| 74 | |
| 75 | public async getQueryForLang(name: SupportedLang): Promise<Query> { |
| 76 | const resources = await this.getResources(name); |
no test coverage detected