class AdLint::XRefFun
Public Class Methods
new(loc, referrer, ref_type, fun)
click to toggle source
DESCRIPTION¶ ↑
Constructs the cross reference information.
PARAMETER¶ ↑
- loc
- referrer
-
FunctionId
– Accessing function identifier. - ref_type
-
String
– Referencing type string. - fun
-
FunctionId
– Accessed function identifier.
# File lib/adlint/code.rb, line 416 def initialize(loc, referrer, ref_type, fun) @loc = loc @referrer = referrer @ref_type = ref_type @fun = fun end