class Mmmm::ObjectMethods::FileLineMethod

Attributes

file[R]
line[R]
method[R]

Public Class Methods

new(src_loc, m, inherited) click to toggle source
# File lib/mmmm/object_methods.rb, line 6
def initialize src_loc, m, inherited
  @file = src_loc[0]
  @line = src_loc[1]
  @method = m
  @inherited = inherited
end

Public Instance Methods

inherited?() click to toggle source
# File lib/mmmm/object_methods.rb, line 13
def inherited?
  @inherited
end