- assertEquals(int, int) - Method in class io.konig.parser.BaseParser
-
Assert that a certain expected code point matches the actual code point encountered.
- assertNext(int) - Method in class io.konig.parser.BaseParser
-
Skip over any whitespace, read the next code point, and assert that it matches the expected value.
- assertToken(String) - Method in class io.konig.parser.BaseParser
-
Assert that the reader is positioned at a given expected token.
- assertTokenIgnoreCase(String) - Method in class io.konig.parser.BaseParser
-
Assert that the reader is positioned at a given expected token without regard to case.
- assertWhitespace() - Method in class io.konig.parser.BaseParser
-
Assert that the next code point is a whitespace character, and skip over any subsequent whitespace characters.