7458abc8b3
git-svn-id: file:///home/svn/framework3/trunk@12815 4d416f70-5f16-0410-b530-b9f4589650da
17 lines
309 B
Ruby
17 lines
309 B
Ruby
module RKelly
|
|
module Nodes
|
|
class FunctionCallNode < Node
|
|
attr_reader :arguments
|
|
def initialize(value, arguments)
|
|
super(value)
|
|
@arguments = arguments
|
|
end
|
|
|
|
def ==(other)
|
|
super && @arguments == other.arguments
|
|
end
|
|
alias :=~ :==
|
|
end
|
|
end
|
|
end
|