DefaultParserInput

abstract class DefaultParserInput extends ParserInput
class Object
trait Matchable
class Any

Value members

Concrete methods

protected def _cursor: Int
protected def _cursor_=(pos: Int): Unit
def cursor: Int
def getLine(index: Int): Line

Inherited methods

Inherited from:
ParserInput
def nextChar(): Char

Advance the cursor and get the next char. Since the char is required to be a 7-Bit ASCII char no decoding is required.

Advance the cursor and get the next char. Since the char is required to be a 7-Bit ASCII char no decoding is required.

Inherited from:
ParserInput
def nextUtf8Char(): Char

Advance the cursor and get the next char, which could potentially be outside of the 7-Bit ASCII range. Therefore decoding might be required.

Advance the cursor and get the next char, which could potentially be outside of the 7-Bit ASCII range. Therefore decoding might be required.

Inherited from:
ParserInput
def sliceCharArray(start: Int, end: Int): Array[Char]
Inherited from:
ParserInput