Method: Simplabs::Excellent::Parsing::SingletonMethodContext#initialize

Defined in:
lib/simplabs/excellent/parsing/singleton_method_context.rb

#initialize(exp, parent) ⇒ SingletonMethodContext

Returns a new instance of SingletonMethodContext.



18
19
20
21
22
23
# File 'lib/simplabs/excellent/parsing/singleton_method_context.rb', line 18

def initialize(exp, parent)
  super
  @name = exp[2].to_s
  @full_name = get_full_name
  @calls = Hash.new(0)
end