syntaxParserRunning function
Tells you whether the language parser is planning to do more parsing work (in a requestIdleCallback pseudo-thread) or has stopped running, either because it parsed the entire document, because it spent too much time and was cut off, or because there is no language parser enabled.
Implementation
bool syntaxParserRunning(EditorViewState view) {
// Check if parse worker plugin is running
// This would need to look up the parse worker plugin instance
return false; // Simplified implementation
}