Error

data class Error(    val reason: String,     val position: Int,     val line: Int,     val column: Int) : ParserResult<Any?>

Parsing failed with the given reason, at index position in the input string.

Constructors

Link copied to clipboard
fun Error(    reason: String,     position: Int,     line: Int,     column: Int)

Properties

Link copied to clipboard
val column: Int
Link copied to clipboard
val line: Int
Link copied to clipboard
val position: Int
Link copied to clipboard
val reason: String