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
This self.remove(0) calculation cost is O(n)
For short scripts, the computational cost is not a problem, but for scripts with more than 5k lines, the Parser starts to take a long time to process.
The text was updated successfully, but these errors were encountered:
Currently the tokenStream uses Vec
This method has
self.lpop()
andself.skip
This
self.remove(0)
calculation cost is O(n)For short scripts, the computational cost is not a problem, but for scripts with more than 5k lines, the
Parser
starts to take a long time to process.The text was updated successfully, but these errors were encountered: