Markers
Table of Contents
| src/Type/ExternType.php | 1 |
| src/Type/FuncType.php | 1 |
ExternType.php
| Type | Line | Description |
|---|---|---|
| TODO | 27 | Fix doc & example Function types classify the signature of functions, mapping a vector of parameters to a vector of results. They are also used to classify the inputs and outputs of instructions. ```php <?php declare(strict_types=1); use Wasm\Type\ValType; $valtype = Type\ValType::new(Type\ValType::KIND_I32); ``` |
FuncType.php
| Type | Line | Description |
|---|---|---|
| TODO | 28 | Fix example ```php <?php declare(strict_types=1); use Wasm\Type\ValType; $valtype = Type\ValType::new(Type\ValType::KIND_I32); ``` |