neo-go/pkg/interop/neogointernal/opcode.go
Evgeniy Stratonikov a92bf281c1 compiler: remove custom logic for util builtins
Signed-off-by: Evgeniy Stratonikov <evgeniy@nspcc.ru>
2021-10-23 16:12:47 +03:00

24 lines
576 B
Go

package neogointernal
// Opcode0NoReturn emits opcode without arguments.
func Opcode0NoReturn(op string) {
}
// Opcode1 emits opcode with 1 argument.
func Opcode1(op string, arg interface{}) interface{} {
return nil
}
// Opcode2 emits opcode with 2 arguments.
func Opcode2(op string, arg1, arg2 interface{}) interface{} {
return nil
}
// Opcode2NoReturn emits opcode with 2 arguments.
func Opcode2NoReturn(op string, arg1, arg2 interface{}) {
}
// Opcode3 emits opcode with 3 arguments.
func Opcode3(op string, arg1, arg2, arg3 interface{}) interface{} {
return nil
}