Method: Object#lineage

Defined in:
lib/mysh/expression/lineage.rb

#lineageObject

Get the lineage of this object.



7
8
9
10
# File 'lib/mysh/expression/lineage.rb', line 7

def lineage
  klass = self.class
  to_s + " of " + klass.lineage
end