Kotlin - Forth WIP3
This commit is contained in:
parent
e126e0f498
commit
fe7ddbb012
1 changed files with 11 additions and 3 deletions
|
@ -15,11 +15,19 @@ class ForthEvaluator {
|
|||
}
|
||||
}
|
||||
return emptyList()
|
||||
|
||||
}
|
||||
// TODO: This needs to actually work?
|
||||
private fun validateToken(token: String): Boolean {
|
||||
require(if (token.toInt() >= 0){ true } else token in validOps)
|
||||
return false
|
||||
if (token !in validOps) {
|
||||
try {
|
||||
token.toInt()
|
||||
} catch (e: NumberFormatException) {
|
||||
if (token !in validOps) {
|
||||
throw IllegalArgumentException("No definition available for operator \"$token\"")
|
||||
}
|
||||
}
|
||||
}
|
||||
return true
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue