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 RewriteControlFlow phase visits expressions only if they contain control flow (return, break, continue). But that means visiting twice the expressions when they contain control flow which is bad in terms of complexity in the worst cases. We should check if this has an impact. A solution could be to memoize which subexpressions contain control flow.
The text was updated successfully, but these errors were encountered:
The
RewriteControlFlow
phase visits expressions only if they contain control flow (return
,break
,continue
). But that means visiting twice the expressions when they contain control flow which is bad in terms of complexity in the worst cases. We should check if this has an impact. A solution could be to memoize which subexpressions contain control flow.The text was updated successfully, but these errors were encountered: