edict_compile
Compile Edict language AST into WebAssembly modules. Convert JSON abstract syntax trees to base64-encoded WASM binaries for execution.
Instructions
Compile a semantically valid Edict AST into a WebAssembly module. Returns the WASM binary encoded as a base64 string. Supports single module (ast) or multi-module (modules array) input.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ast | No | The Edict JSON AST to compile (single module) | |
| modules | No | Array of Edict module ASTs to compile together (multi-module). Cross-module imports are resolved automatically. |