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
I think I should make commands run in real time when I am editing the input file.
Just like what compiler explorer did. Okay, more and more similar. :)
However, there is a few issues to solve:
performance - we don't want to print all the IRs immediately since it's so slow to print and parsing.
async processing - we want the commands run in background when I am typing so it won't break the editing.
lazy processing - If we are opening a window - we just want to see change on that window in real time. Other commands could be delayed.
The text was updated successfully, but these errors were encountered:
I think I should make commands run in real time when I am editing the input file.
Just like what compiler explorer did. Okay, more and more similar. :)
However, there is a few issues to solve:
The text was updated successfully, but these errors were encountered: