summaryrefslogtreecommitdiff
path: root/include/wabt/wat-writer.h
diff options
context:
space:
mode:
authorSam Clegg <sbc@chromium.org>2023-02-28 16:30:42 -0800
committerGitHub <noreply@github.com>2023-02-28 16:30:42 -0800
commit86d025bff8cac969b3f3e69f2b2a2b00116b496c (patch)
tree69b1386268c83dcaef6d971e9521c1395deef6d1 /include/wabt/wat-writer.h
parent297e6593288ff8b3db1bfc94ee59cb9b42d962ef (diff)
downloadwabt-86d025bff8cac969b3f3e69f2b2a2b00116b496c.tar.gz
wabt-86d025bff8cac969b3f3e69f2b2a2b00116b496c.tar.bz2
wabt-86d025bff8cac969b3f3e69f2b2a2b00116b496c.zip
Always do a full roundtrip in run-roundtrip.py (#1661)
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
Diffstat (limited to 'include/wabt/wat-writer.h')
-rw-r--r--include/wabt/wat-writer.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/wabt/wat-writer.h b/include/wabt/wat-writer.h
index a56c7ab3..0f19ba24 100644
--- a/include/wabt/wat-writer.h
+++ b/include/wabt/wat-writer.h
@@ -18,6 +18,7 @@
#define WABT_WAT_WRITER_H_
#include "wabt/common.h"
+#include "wabt/feature.h"
namespace wabt {
@@ -25,6 +26,9 @@ struct Module;
class Stream;
struct WriteWatOptions {
+ WriteWatOptions() = default;
+ WriteWatOptions(const Features& features) : features(features) {}
+ Features features;
bool fold_exprs = false; // Write folded expressions.
bool inline_export = false;
bool inline_import = false;