diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-01-13 07:29:41 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-01-13 07:29:41 +0800 |
commit | 5b561f434d888b750bb9b29726a86d664ac89660 (patch) | |
tree | bca348257d0f28f3f126788768c50d11e9ecc335 /vm/common.go | |
parent | 750d70c2024784227c8ac920d651c337c2de207e (diff) | |
parent | ba225017c4c1b60dff57ad56da4e8972812a17e2 (diff) | |
download | go-tangerine-5b561f434d888b750bb9b29726a86d664ac89660.tar go-tangerine-5b561f434d888b750bb9b29726a86d664ac89660.tar.gz go-tangerine-5b561f434d888b750bb9b29726a86d664ac89660.tar.bz2 go-tangerine-5b561f434d888b750bb9b29726a86d664ac89660.tar.lz go-tangerine-5b561f434d888b750bb9b29726a86d664ac89660.tar.xz go-tangerine-5b561f434d888b750bb9b29726a86d664ac89660.tar.zst go-tangerine-5b561f434d888b750bb9b29726a86d664ac89660.zip |
Merge pull request #254 from chfast/pr/jitvm_stub
JitVm struct stub. Forwards calls to DebugVm.
Diffstat (limited to 'vm/common.go')
-rw-r--r-- | vm/common.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vm/common.go b/vm/common.go index f19b0fe4b..ed250dab1 100644 --- a/vm/common.go +++ b/vm/common.go @@ -14,6 +14,7 @@ type Type int const ( StandardVmTy Type = iota DebugVmTy + JitVmTy MaxVmTy ) |