Searched refs:SyntaxException (Results 1 – 1 of 1) sorted by relevance
61 interpretTable.find { instr matches it.first } ?: throw SyntaxException(instr) in <lambda>()62 val match = matcher.matchEntire(instr) ?: throw SyntaxException(instr) in <lambda>()166 class SyntaxException(msg: String, cause: Throwable? = null) : RuntimeException(msg, cause) class