Removed old VM code

This commit is contained in:
obscuren
2014-03-22 11:47:27 +01:00
parent 01c1bce9c5
commit 6a86c517c4
3 changed files with 5 additions and 370 deletions

View File

@ -149,6 +149,10 @@ func (s *State) Put(key, object []byte) {
s.trie.Update(string(key), string(object))
}
func (s *State) Root() interface{} {
return s.trie.Root
}
// Script compilation functions
// Compiles strings to machine code
func Compile(code []string) (script []string) {