Versions in this module Expand all Collapse all v0 v0.2.0 May 18, 2026 Changes in this version + func EmbeddedStd() []byte + func PassthroughIface(_ *vm.Machine, ifc vm.Iface) reflect.Value type BridgeError + FnFormat func(fmt.State, rune) + Ifc vm.Iface + func (b *BridgeError) Is(target error) bool + type BridgeErrorUnwrap struct + FnError func() string + FnFormat func(fmt.State, rune) + FnUnwrap func() error + Ifc vm.Iface + Val any + func (b *BridgeErrorUnwrap) Error() string + func (b *BridgeErrorUnwrap) Format(f fmt.State, verb rune) + func (b *BridgeErrorUnwrap) Is(target error) bool + func (b *BridgeErrorUnwrap) Unwrap() error + type BridgeFormat struct + Fn func(fmt.State, rune) + func (b *BridgeFormat) Format(f fmt.State, verb rune) + type BridgeUnwrap struct + Fn func() error + func (b *BridgeUnwrap) Unwrap() error v0.1.0 May 4, 2026 Changes in this version + var Values = map[string]map[string]reflect.Value + func PackagePatchers() map[string][]PackagePatcher + func RegisterPackagePatcher(importPath string, fn PackagePatcher) + func SrcFS() fs.FS + type BridgeClose struct + Fn func() error + func (b *BridgeClose) Close() error + type BridgeError struct + Fn func() string + Val any + func (b *BridgeError) Error() string + func (b *BridgeError) Format(f fmt.State, verb rune) + type BridgeFlagValue struct + FnSet func(string) error + FnString func() string + func (b *BridgeFlagValue) Set(s string) error + func (b *BridgeFlagValue) String() string + type BridgeGoString struct + Fn func() string + Val any + func (b *BridgeGoString) Format(f fmt.State, verb rune) + func (b *BridgeGoString) GoString() string + type BridgeHeapInterface struct + FnPop func() any + FnPush func(any) + func (b *BridgeHeapInterface) Pop() any + func (b *BridgeHeapInterface) Push(x any) + type BridgeMarshalJSON struct + Fn func() ([]byte, error) + func (b *BridgeMarshalJSON) MarshalJSON() ([]byte, error) + type BridgeRead struct + Fn func([]byte) (int, error) + func (b *BridgeRead) Read(p []byte) (int, error) + type BridgeReadFrom struct + Fn func(io.Reader) (int64, error) + func (b *BridgeReadFrom) ReadFrom(r io.Reader) (int64, error) + type BridgeReaderWriterTo struct + FnRead func([]byte) (int, error) + FnWriteTo func(io.Writer) (int64, error) + func (b *BridgeReaderWriterTo) Read(p []byte) (int, error) + func (b *BridgeReaderWriterTo) WriteTo(w io.Writer) (int64, error) + type BridgeSortInterface struct + FnLen func() int + FnLess func(int, int) bool + FnSwap func(int, int) + func (b *BridgeSortInterface) Len() int + func (b *BridgeSortInterface) Less(i, j int) bool + func (b *BridgeSortInterface) Swap(i, j int) + type BridgeString struct + Fn func() string + Val any + func (b *BridgeString) Format(f fmt.State, verb rune) + func (b *BridgeString) String() string + type BridgeUnmarshalJSON struct + Fn func([]byte) error + func (b *BridgeUnmarshalJSON) UnmarshalJSON(data []byte) error + type BridgeWrite struct + Fn func([]byte) (int, error) + func (b *BridgeWrite) Write(p []byte) (int, error) + type BridgeWriteTo struct + Fn func(io.Writer) (int64, error) + func (b *BridgeWriteTo) WriteTo(w io.Writer) (int64, error) + type BridgeWriterReaderFrom struct + FnReadFrom func(io.Reader) (int64, error) + FnWrite func([]byte) (int, error) + func (b *BridgeWriterReaderFrom) ReadFrom(r io.Reader) (int64, error) + func (b *BridgeWriterReaderFrom) Write(p []byte) (int, error) + type PackagePatcher func(m *vm.Machine, values map[string]vm.Value)