| 153 | } |
| 154 | |
| 155 | wabt::Result::Enum wabt_validate_script(wabt::Script* script, |
| 156 | wabt::Features* features, |
| 157 | wabt::Errors* errors) { |
| 158 | wabt::ValidateOptions options; |
| 159 | options.features = *features; |
| 160 | return ValidateScript(script, errors, options); |
| 161 | } |
| 162 | |
| 163 | WabtWriteScriptResult* wabt_write_binary_spec_script( |
| 164 | wabt::Script* script, |
nothing calls this directly
no test coverage detected