class Function
A Ruby-specific function.
Definitions
def nested_name
Generate a nested name for the function.
Implementation
def nested_name
".#{@name}"
end
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