Kotlin - Forth WIP2

This commit is contained in:
Unknown 2017-08-15 14:59:05 -04:00
parent 3af3ff908f
commit e126e0f498
2 changed files with 13 additions and 5 deletions

View file

@ -1,16 +1,25 @@
import java.util.* import java.util.*
class ForthEvaluator { class ForthEvaluator {
val stack: Stack<Char> = Stack<Char>() val stack: Stack<String> = Stack<String>()
val overridenOperators = mutableMapOf<Char, Char>() val overridenOperators = mutableMapOf<Char, Char>()
private val validOps = listOf<String>("+", "-", "*", "/", "dup", "drop", "swap", "over")
fun evaluateProgram(inpList: List<String>): List<Int>{ fun evaluateProgram(inpList: List<String>): List<Int>{
for (i in inpList){ for (i in inpList){
val tokenized = i.toList().filter { it != ' ' } val tokenized = i.split(' ')
for (i in tokenized){ tokenized.all { validateToken(it) }
stack.push(i) 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
} }
} }

View file

@ -340,7 +340,6 @@ class ForthEvaluatorTest {
forthEvaluator.evaluateProgram(listOf(": 1 2 ;")) forthEvaluator.evaluateProgram(listOf(": 1 2 ;"))
} }
@Ignore
@Test @Test
fun testErrorIfEvaluatingAnUndefinedOperator() { fun testErrorIfEvaluatingAnUndefinedOperator() {
expectedException.expect(IllegalArgumentException::class.java) expectedException.expect(IllegalArgumentException::class.java)