Node
# File lib/rkelly/nodes/function_call_node.rb, line 5 def initialize(value, arguments) super(value) @arguments = arguments end
# File lib/rkelly/nodes/function_call_node.rb, line 10 def ==(other) super && @arguments == other.arguments end