Gonna checkpoint here at a lot of good progress. Wrote generate_state_automaton, closure, and goto, and they compile and run, though don't work. (they don't crash yet though).

This commit is contained in:
Nathan Braswell
2015-08-04 01:07:33 -04:00
parent be069197ba
commit c987459a77
5 changed files with 106 additions and 6 deletions

View File

@@ -47,6 +47,7 @@ fun main():int {
range(8).for_each(fun(i: int) { println(lex.next().to_string()); } )
/*range(80).for_each(fun(i: int) { println(lex.next().to_string()); } )*/
println(a.to_string())
a.calculate_state_automaton()
return 0
}