class RKelly::Nodes::FunctionCallNode

Attributes

arguments[R]

Public Class Methods

new(value, arguments) click to toggle source
Calls superclass method
# File lib/rkelly/nodes/function_call_node.rb, line 5
def initialize(value, arguments)
  super(value)
  @arguments = arguments
end

Public Instance Methods

==(other) click to toggle source
Calls superclass method
# File lib/rkelly/nodes/function_call_node.rb, line 10
def ==(other)
  super && @arguments == other.arguments
end
Also aliased as: =~
=~(other)
Alias for: ==