Method: AdLint::Ld::FunctionMap#initialize
- Defined in:
- lib/adlint/ld/object.rb
#initialize ⇒ FunctionMap
Returns a new instance of FunctionMap.
266 267 268 269 270 |
# File 'lib/adlint/ld/object.rb', line 266 def initialize @def_index = Hash.new { |hash, key| hash[key] = Set.new } @dcl_index = Hash.new { |hash, key| hash[key] = Set.new } @composing_fpaths = Set.new end |