class PROIEL::TreebankObject

An object in a treebank.

@abstract

Public Instance Methods

inspect() click to toggle source

Returns a string containing a human-readable representation of the object.

This implementation provides only minimal information about the object and prevents (potentially infinite) recursion into the object tree.

@return [String]

# File lib/proiel/treebank_object.rb, line 17
def inspect
  "#<#{self.class} @id=#{id.inspect}>"
end