class Treetop::Runtime::CompiledParser::Regexp

Public Class Methods

new(*args) click to toggle source
Calls superclass method
# File lib/piggly/parser/treetop_ruby19_patch.rb, line 6
def initialize(*args)
  if args.size == 1
    super(args.first, nil, 'n')
  else
    super
  end
end