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
FrankenScript currently constructs most of the AST in just one pass. Binary expressions are currently a bit weird. Something like this: x == y == True doesn't work.
It would be good to investigate this and maybe make the parser more flexible for such cases.
I'm only labeling this as an enhancement since most of this works and this can be fixed with an assignment to a temporary
The text was updated successfully, but these errors were encountered:
FrankenScript currently constructs most of the AST in just one pass. Binary expressions are currently a bit weird. Something like this:
x == y == True
doesn't work.It would be good to investigate this and maybe make the parser more flexible for such cases.
I'm only labeling this as an enhancement since most of this works and this can be fixed with an assignment to a temporary
The text was updated successfully, but these errors were encountered: