Kotlin - Forth WIP3

This commit is contained in:
Unknown 2017-08-16 15:55:49 -04:00
parent e126e0f498
commit fe7ddbb012

View file

@ -15,11 +15,19 @@ class ForthEvaluator {
} }
} }
return emptyList() return emptyList()
} }
// TODO: This needs to actually work?
private fun validateToken(token: String): Boolean { private fun validateToken(token: String): Boolean {
require(if (token.toInt() >= 0){ true } else token in validOps) if (token !in validOps) {
return false try {
token.toInt()
} catch (e: NumberFormatException) {
if (token !in validOps) {
throw IllegalArgumentException("No definition available for operator \"$token\"")
}
}
}
return true
} }
} }