class AdLint::MetricRecord::FunctionCallRecord

Public Instance Methods

callee_function() click to toggle source
# File lib/adlint/metric.rb, line 621
def callee_function
  FunctionId.new(field_at(7), field_at(8))
end
caller_function() click to toggle source
# File lib/adlint/metric.rb, line 617
def caller_function
  FunctionId.new(field_at(5), field_at(6))
end
function_call?() click to toggle source
# File lib/adlint/metric.rb, line 613
def function_call?
  true
end