-
Notifications
You must be signed in to change notification settings - Fork 3
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
Hint to add/remove parentheses #49
Labels
Comments
markiewb
changed the title
Hint to add parentheses to condition of ternary
Hint to add/remove parentheses to condition of ternary
Mar 8, 2015
markiewb
changed the title
Hint to add/remove parentheses to condition of ternary
Hint to add/remove parentheses to condition of ternary if
Mar 18, 2015
markiewb
changed the title
Hint to add/remove parentheses to condition of ternary if
Hint to add/remove parentheses
Jul 28, 2016
markiewb
added a commit
that referenced
this issue
Jul 28, 2016
Work in progress 9dc0b9c |
markiewb
added a commit
that referenced
this issue
Oct 24, 2016
markiewb
added a commit
that referenced
this issue
Dec 9, 2016
…h bogus proposals. Needs more conditional cases
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Provide a hint to add parentheses
true ? "foo" : "bar"
to
(true) ? "foo" : "bar"
and backwards
The text was updated successfully, but these errors were encountered: