2022-12-07 23:28:17 +02:00
|
|
|
import { ensureSyntaxTree, syntaxTreeAvailable } from '@codemirror/language';
|
|
|
|
import { EditorState } from '@codemirror/state';
|
|
|
|
|
|
|
|
// Forces a full parse of a CodeMirror editor. This is intended for unit testing.
|
|
|
|
// If not in a unit-test consider using ensureSyntaxTree or forceParsing.
|
|
|
|
// This will throw if no language is configured for the editor.
|
|
|
|
const forceFullParse = (editorState: EditorState) => {
|
|
|
|
const timeout = 3000; // ms
|
|
|
|
ensureSyntaxTree(editorState, editorState.doc.length, timeout);
|
|
|
|
|
|
|
|
if (!syntaxTreeAvailable(editorState)) {
|
|
|
|
throw new Error(
|
2023-08-22 12:58:53 +02:00
|
|
|
`Unable to generate a syntax tree in ${timeout}. Is the editor configured to parse a language?`,
|
2022-12-07 23:28:17 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export default forceFullParse;
|