summaryrefslogtreecommitdiff
path: root/include/wabt/wat-writer.h
Commit message (Collapse)AuthorAgeFilesLines
* Always do a full roundtrip in run-roundtrip.py (#1661)Sam Clegg2023-02-281-0/+4
| | | | | | | | | | | | | | | | Even when the result is to be printed rather than compared byte for byte with the first version its still good to process the resulting wat output file so that we know we can parse what we generate. Case in point, this changed caused me to fix two latent bugs: 1. We were not correctly parsing events with inline import/export. 2. We were output element segment names even when bulk memory was not enabled (See #1651) The fix for (2) is a little more involved that we might like since for the first time the wat writer needs to know what features are enabled. Fixes: #1651
* Move headers to include/wabt/ (#1998)Alex Reinking2022-09-281-0/+37
This makes things easier for users and packagers of libwabt.