Versions in this module Expand all Collapse all v0 v0.6.0 May 20, 2025 Changes in this version + var ErrMissingArgument = errors.New("missing argument") + var ErrNoInternalValue = errors.New("object does not have an internal instance") + type CallbackContext interface + ConsumeOptionalArg func() (arg Value, found bool) + ConsumeRequiredArg func(name string) (Value, error) + ConsumeRestArgs func() []Value + InternalInstance func() (any, error) + ReturnWithError func(error) CallbackRVal + ReturnWithValue func(Value) CallbackRVal + ValueFactory func() ValueFactory + type CallbackRVal interface + type FunctionCallback func(CallbackContext) CallbackRVal + type Value interface + AsString func() string + type ValueFactory interface + Null func() Value + String func(string) Value