From e126e0f498affb925fb0bbcaf34878fe60459341 Mon Sep 17 00:00:00 2001 From: Unknown Date: Tue, 15 Aug 2017 14:59:05 -0400 Subject: [PATCH] Kotlin - Forth WIP2 --- kotlin/forth/src/main/kotlin/ForthEvaluator.kt | 17 +++++++++++++---- .../forth/src/test/kotlin/ForthEvaluatorTest.kt | 1 - 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/kotlin/forth/src/main/kotlin/ForthEvaluator.kt b/kotlin/forth/src/main/kotlin/ForthEvaluator.kt index 2dedfd2..5cdfd8f 100644 --- a/kotlin/forth/src/main/kotlin/ForthEvaluator.kt +++ b/kotlin/forth/src/main/kotlin/ForthEvaluator.kt @@ -1,16 +1,25 @@ import java.util.* class ForthEvaluator { - val stack: Stack = Stack() + val stack: Stack = Stack() val overridenOperators = mutableMapOf() + private val validOps = listOf("+", "-", "*", "/", "dup", "drop", "swap", "over") + fun evaluateProgram(inpList: List): List{ for (i in inpList){ - val tokenized = i.toList().filter { it != ' ' } - for (i in tokenized){ - stack.push(i) + val tokenized = i.split(' ') + tokenized.all { validateToken(it) } + for (j in tokenized){ + stack.push(j) } } + 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 } } diff --git a/kotlin/forth/src/test/kotlin/ForthEvaluatorTest.kt b/kotlin/forth/src/test/kotlin/ForthEvaluatorTest.kt index cdf5157..24dfabc 100644 --- a/kotlin/forth/src/test/kotlin/ForthEvaluatorTest.kt +++ b/kotlin/forth/src/test/kotlin/ForthEvaluatorTest.kt @@ -340,7 +340,6 @@ class ForthEvaluatorTest { forthEvaluator.evaluateProgram(listOf(": 1 2 ;")) } - @Ignore @Test fun testErrorIfEvaluatingAnUndefinedOperator() { expectedException.expect(IllegalArgumentException::class.java)