Tagged Questions
1
vote
2answers
39 views
Expressions with conditional and assignment operator
This Javascript expression is working just fine in all browsers (jsfiddle):
false ? 1 : x = 2;
It's evaluating to 2.
But why? I'd expect an exception here, because the left hand side of the ...
1
vote
3answers
346 views
Are C/C++ operator precedence & associativity rules ever violated?
Are operator precedence & associativity rules ever violated in any C/C++ expression?
If so, can you give an example?
Assume the claims of precedence and associativity rules are:
Each ...
1
vote
0answers
63 views
Looking for learning resource regarding operator associativity and precedence for a parser that I am building
I'm using Parboiled to build a parser for a search syntax that has several operators of varying precedence and associativity. As this will be my first parser, it would be really nice to see some good ...
1
vote
1answer
58 views
Reason for precedence of operators with a type on the right-hand side
http://confluence.jetbrains.net/display/Kotlin/Grammar#Grammar-Precedence gives the operator precedence table for Kotlin, including the operators with a type on the right-hand side, :, as and as?, ...
114
votes
1answer
2k views
Why does (1 in [1,0] == True) evaluate to False?
When I was looking at answers to this question, I found I didn't understand my own answer.
I don't really understand how this is being parsed. Why does the second example return False?
>>> ...
