class Function
A Ruby-specific function.
Definitions
def arguments_node
The node which contains the function arguments.
Implementation
def arguments_node
if node = @node.children[2]
if node.location.expression
return node
end
end
end