(stream)
| 5 | |
| 6 | const plainTextLanguage = StreamLanguage.define({ |
| 7 | token(stream) { |
| 8 | stream.next(); |
| 9 | return null; |
| 10 | }, |
| 11 | }); |
| 12 | |
| 13 | export const getCodeParserByLanguageName = async (languageName: string): Promise<Parser> => { |
nothing calls this directly
no outgoing calls
no test coverage detected