binary
packageThis package is not in the latest version of its module.
Details
Validgo.mod file
The Go module system was introduced in Go 1.11 and is the official dependency management solution for Go.
Redistributable license
Redistributable licenses place minimal restrictions on how software can be used, modified, and redistributed.
Tagged version
Modules with tagged versions give importers more predictable builds.
Stable version
When a project reaches major version v1 it is considered stable.
- Learn more about best practices
Repository
Links
Documentation¶
Index¶
Constants¶
This section is empty.
Variables¶
var (ErrInvalidByte =errors.New("invalid byte")ErrInvalidMagicNumber =errors.New("invalid magic number")ErrInvalidVersion =errors.New("invalid version header")ErrInvalidSectionID =errors.New("invalid section id")ErrCustomSectionNotFound =errors.New("custom section not found"))
var Magic = []byte{0x00, 0x61, 0x73, 0x6D}Magic is the 4 byte preamble (literally "\0asm") of the binary formatSeehttps://www.w3.org/TR/2019/REC-wasm-core-1-20191205/#binary-magic
Functions¶
funcDecodeModule¶
func DecodeModule(binary []byte,enabledFeaturesapi.CoreFeatures,memoryLimitPagesuint32,memoryCapacityFromMax,dwarfEnabled, storeCustomSectionsbool,) (*wasm.Module,error)
DecodeModule implements wasm.DecodeModule for the WebAssembly 1.0 (20191205) Binary FormatSeehttps://www.w3.org/TR/2019/REC-wasm-core-1-20191205/#binary-format%E2%91%A0
Types¶
This section is empty.