
Hello,
We are currently overriding the Parse(IParseRequest request) method in the LLParserBase to do additional compilation type of work on the AST. However, this seems to be done on the main thread and will slow down the typing of logic in the UI.
Is there a better place to be doing this work? Ideally, we could do this work on the same thread as the original parse.
Any suggestions?
Thanks!