about summary refs log tree commit diff
path: root/pkg/lang/vm/executor/nativefunc.go
blob: 2188bfb01d4cb4dd3c9a8d9c49f10054ad09a68b (plain)
1
2
3
4
5
package executor

import "jinx/pkg/lang/vm/value"

type NativeFunc func(executor Exectutor, args []value.Value) (value.Value, error)