Syntax Error
class SyntaxError( val message: String, val lineNum: Int, val columnNum: Int, val visualisation: String? = null) : Error
Content copied to clipboard
Represents a syntactical error in the given input.
Should only be thrown during lexical or syntax analysis, in the case of an unrecognised or unexpected token, according to the language specification.
Constructors
Link copied to clipboard
fun SyntaxError( message: String, lineNum: Int, columnNum: Int, visualisation: String? = null)
Content copied to clipboard