The answer to a similar question is wrong.
Method calls are mentionned neither in Ruby documentation nor in the community wiki.
or
or
seems to have a lower precedence than a method call without parentheses :
puts false or true
is equivalent to
( puts false ) or true
and displays false
.
NOTE: I know or
shouldn't be used. Still, it's a good example to show that some operators do have lower precedence than method calls.
||
puts false || true
is equivalent to
puts (false || true)
and displays true
.
The parentheses used for method call don't seem to be grouping :
puts(false or true)
# SyntaxError: unexpected keyword_or
puts((false or true))
#=> true
Where should method calls with and without parentheses be in this precedence table?
I'm looking for the exact location of method calls in the table. Preferably with examples proving it's lower than the previous one and higher than the next one.
The current answers also don't seem to mention method calls with parentheses.
Thanks in advance!
This aims to test all possible scenarios.
Note that when saying "operator X
has higher precedence than method invocation" what is meant is in arguments. Aka:
invocation foo X bar
as opposed to (call on object)
X invocation
As far as the second case is concerned, method calls always have higher precedence.
It doesn't fit:
SyntaxError
in some casesrescue
, but lower than assignmentnot
can't be used after method invocation regardless of brackets()
) with method invocations sometimes causes a SyntaxError
. These cases are: and
, or
, if
, unless
, until
, while
and rescue
and
, or
, postfix if
, unless
, until
, while
, rescue
have higher precedence than method invocationLets try it:
class Noone < BasicObject
undef_method :!
def initialize(order)
@order = order
end
def method_missing(name, *args)
@order << name
self
end
end
First unary:
# + and - will become binary
unary_operators = %i(! ~ not defined?)
puts 'No brackets'
unary_operators.each do |operator|
puts operator
order = []
foo = Noone.new order
bar = Noone.new order
begin
eval("foo.meta #{operator} bar")
rescue SyntaxError => e
puts e
end
p order
puts '-----------'
end
puts 'Brackets'
unary_operators.each do |operator|
puts operator
order = []
foo = Noone.new order
bar = Noone.new order
begin
eval("foo.meta(#{operator} bar)")
rescue SyntaxError => e
puts e
end
p order
puts '-----------'
end
Points taken:
not
after a method invocation is a SyntaxError
Now binary:
binary_operators = %i(
**
* / %
+ -
<< >>
&
| ^
> >= < <=
<=> == === =~
.. ...
or and
)
puts 'No brackets'
binary_operators.each do |operator|
order = []
foo = Noone.new order
bar = Noone.new order
baz = Noone.new order
begin
eval("foo.meta bar #{operator} baz")
rescue SyntaxError => e
puts e
end
p order
end
puts 'Brackets'
binary_operators.each do |operator|
order = []
foo = Noone.new order
bar = Noone.new order
baz = Noone.new order
begin
eval("foo.meta( bar #{operator} baz)")
rescue SyntaxError => e
puts e
end
p order
end
Points taken:
and
or or
is a SyntaxError
and
and or
further without brackets..
and ...
call <=>
. We have to test this further&&
, ||
, ==
, !=
, modifier rescue
, if
, unless
, until
, while
def yes
puts 'yes'
true
end
def no
puts 'no'
false
end
def anything(arg)
puts 'Anything'
arg
end
anything yes and no
anything no or yes
anything yes && no
anything no || yes
anything(yes && no)
anything(no || yes)
anything yes == no
anything(yes == no)
anything yes != no
anything(yes != no)
Points taken:
and
and or
have lower precedence without brackets&&
, ||
, ==
and !=
have higher precedence regardless of bracketsdef five(*args)
p args
5
end
five 2..7
five(2..7)
five 2...7
five(2...7)
Points taken:
..
and ...
have higher precedence regardless of bracketsanything yes if no
anything(yes if no)
anything no unless yes
anything(no unless yes)
anything no until yes
anything(no until yes)
anything yes while no
anything(yes while no)
Points taken:
if
, unless
, until
, while
cause a SyntaxError
def error
puts 'Error'
raise
end
anything error rescue yes
anything(error rescue yes)
Points taken:
rescue
cause a SyntaxError
rescue
has lower precedence if no brackets are presentTernary:
anything yes ? no : 42
anything(yes ? no : 42)
Points taken:
Assignment (left for last as it changes yes
and no
):
anything yes = no
anything(no = five(42))
Points taken:
Note that +=
and the like are just shortcuts for +
and =
so they exhibit the same behaviour.