You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Language.parse() API (and possibly others) should be turned async returning a Promise<T>. This is important for clients like an LSP that shouldn't block the main event loop over parsing that can happen in the background.
The
Language.parse()API (and possibly others) should be turnedasyncreturning aPromise<T>. This is important for clients like an LSP that shouldn't block the main event loop over parsing that can happen in the background.More info: