Skip to content
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

Removal of necessary parentheses #21

Closed
hasanyasin opened this issue Feb 3, 2012 · 4 comments
Closed

Removal of necessary parentheses #21

hasanyasin opened this issue Feb 3, 2012 · 4 comments
Assignees
Labels

Comments

@hasanyasin
Copy link

c||(c=393); // is processed correctly as:
c||(c=393); // parentheses kept.

However, in this situation:

c||(c=393,a=323,b=2321);

result is this:

c||c=393,a=323,b=2321;

causing a syntax error.

Version: slimit-0.5.5

@ghost ghost assigned rspivak Feb 3, 2012
@rspivak
Copy link
Owner

rspivak commented Feb 3, 2012

Thanks for the bug report. I'll look into it soon.

@rspivak
Copy link
Owner

rspivak commented Feb 4, 2012

Fixed in 0f446fd

To try the fix you'll have to install slimit from the master branch. Let me know if you have any other issues.

@hasanyasin
Copy link
Author

I pulled, tested, it works. Wow. You are fast!

I hope it did not break anything else. I will use slimit at Mushroom, so there will be a lot of testing, for sure.

Thank you.

@rspivak
Copy link
Owner

rspivak commented Feb 4, 2012

You're welcome and good luck with Mushroom.

acatton pushed a commit to acatton/fork--rspivak--slimit that referenced this issue Jan 26, 2015
Removal of necessary parentheses
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants