# File rparsec/parsers.rb, line 115
  def lookahead(n)
    raise ArgumentError, "lookahead number #{n} should be positive" unless n>0
    return self if n == @lookahead
    withLookahead(n)
  end