class AdLint::Ld::FunctionCall

Attributes

callee[R]
caller[R]

Public Class Methods

new(caller_ref, callee_fun) click to toggle source
# File lib/adlint/ld/object.rb, line 543
def initialize(caller_ref, callee_fun)
  @caller = caller_ref
  @callee = callee_fun
end

Public Instance Methods

==(rhs)
Alias for: eql?
eql?(rhs) click to toggle source
# File lib/adlint/ld/object.rb, line 551
def eql?(rhs)
  to_a == rhs.to_a
end
Also aliased as: ==
hash() click to toggle source
# File lib/adlint/ld/object.rb, line 557
def hash
  to_a.hash
end
to_a() click to toggle source
# File lib/adlint/ld/object.rb, line 561
def to_a
  [@caller, @callee]
end