-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
implement handling and/or expressions #165
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Implementation is not handling more than one
and
/or
. For example,x and y and z
orx or y or z
.
I used test like: (x > 0 and x < 10 and x) or (y > 0 and y < 10 and y)
if x and y
is not handled. Need to add testing that usesand
/or
with branches and loops.
Yeah, it's still in progress. I'll let you know when it is ready for review. |
I've converted this back to a draft as it was not yet ready for review. |
As title
I added code and tests to satisfy the above, not sure how complex to make the tests. |
As title
As title
As title. Fixes #148