class AdLint::Funcall
DESCRIPTION¶ ↑
Function call information.
Public Class Methods
new(loc, caller_fun, callee_fun)
click to toggle source
DESCRIPTION¶ ↑
Constructs the function call informatin.
PARAMETER¶ ↑
- loc
- caller_fun
-
FunctionId
– Calling function identifier. - callee_fun
-
FunctionId
– Called function identifier.
# File lib/adlint/code.rb, line 361 def initialize(loc, caller_fun, callee_fun) @loc = loc @caller_fun = caller_fun @callee_fun = callee_fun end