class Analyst::Entities::InstanceMethod
Public Instance Methods
full_name()
click to toggle source
# File lib/analyst/entities/method.rb, line 16 def full_name parent.full_name + '#' + name end
kind()
click to toggle source
# File lib/analyst/entities/method.rb, line 8 def kind "Instance Method" end
name()
click to toggle source
# File lib/analyst/entities/method.rb, line 12 def name ast.children.first.to_s end