More private members

This commit is contained in:
Ian Gulliver
2021-11-16 15:27:30 -10:00
parent f39a856361
commit 7ab0aba088
3 changed files with 32 additions and 20 deletions

View File

@@ -1,8 +1,8 @@
package vm
type OpHandler func(*State, *Instruction)
type opHandler func(*State, *Instruction)
var OpHandlers = map[OpCodeType]OpHandler{
var opHandlers = map[OpCodeType]opHandler{
OpNoOp: (*State).NoOp,
OpCall: (*State).Call,
OpReturn: (*State).Return,