diff options
author | obscuren <geffobscura@gmail.com> | 2015-01-19 18:18:34 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-01-19 18:18:34 +0800 |
commit | 89c69a1d257daf973690a7fb96d2aa2b9d0849ec (patch) | |
tree | 558979f024cc04774f3e110ba34adbabf784623e /vm/common.go | |
parent | 06bfe19f05b2a961a458cada69c72c809354f53f (diff) | |
download | dexon-89c69a1d257daf973690a7fb96d2aa2b9d0849ec.tar dexon-89c69a1d257daf973690a7fb96d2aa2b9d0849ec.tar.gz dexon-89c69a1d257daf973690a7fb96d2aa2b9d0849ec.tar.bz2 dexon-89c69a1d257daf973690a7fb96d2aa2b9d0849ec.tar.lz dexon-89c69a1d257daf973690a7fb96d2aa2b9d0849ec.tar.xz dexon-89c69a1d257daf973690a7fb96d2aa2b9d0849ec.tar.zst dexon-89c69a1d257daf973690a7fb96d2aa2b9d0849ec.zip |
VmDebug => StdVm
Diffstat (limited to 'vm/common.go')
-rw-r--r-- | vm/common.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/vm/common.go b/vm/common.go index ed250dab1..ff187001f 100644 --- a/vm/common.go +++ b/vm/common.go @@ -9,11 +9,10 @@ import ( var vmlogger = logger.NewLogger("VM") -type Type int +type Type byte const ( - StandardVmTy Type = iota - DebugVmTy + StdVmTy Type = iota JitVmTy MaxVmTy |