We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d7d7d6 commit 2feccf8Copy full SHA for 2feccf8
vm/vm.go
@@ -83,7 +83,7 @@ func (vm *VM) Run(program *Program, env any) (_ any, err error) {
83
vm.ip = 0
84
85
for vm.ip < len(program.Bytecode) {
86
- if debug && vm.debug {
+ if vm.debug {
87
<-vm.step
88
}
89
@@ -566,7 +566,7 @@ func (vm *VM) Run(program *Program, env any) (_ any, err error) {
566
panic(fmt.Sprintf("unknown bytecode %#x", op))
567
568
569
570
vm.curr <- vm.ip
571
572
0 commit comments