class Piggly::Parser::Nodes::NotImplemented

Public Instance Methods

parent=(object) click to toggle source
# File lib/piggly/parser/nodes.rb, line 370
def parent=(object)
  # this would go in the constructor, but parent is set from outside
  raise Failure, "Grammar does not implement #{object.source_text} at line #{input.line_of(object.interval.first)}"
end