I'm writing a wasm viewer tool and would like to be able to read the text-based .wat format in the same way as normal .wasm files. Ideally, there would be a new ReadFromWat or ReadFromTextFile method to accompany the existing ReadFromBinary that also returns a simple Module.
I'm writing a wasm viewer tool and would like to be able to read the text-based .wat format in the same way as normal .wasm files. Ideally, there would be a new
ReadFromWat
orReadFromTextFile
method to accompany the existingReadFromBinary
that also returns a simpleModule
.