monaco-editor
Version:
A browser based code editor
24 lines (22 loc) • 867 B
JavaScript
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
class StandaloneTreeSitterLibraryService {
getParserClass() {
throw new Error('not implemented in StandaloneTreeSitterLibraryService');
}
supportsLanguage(languageId, reader) {
return false;
}
getLanguage(languageId, ignoreSupportsCheck, reader) {
return undefined;
}
getInjectionQueries(languageId, reader) {
return null;
}
getHighlightingQueries(languageId, reader) {
return null;
}
}
export { StandaloneTreeSitterLibraryService };