summaryrefslogtreecommitdiff
path: root/src/wat-writer.cc
diff options
context:
space:
mode:
authorBen Smith <binji@chromium.org>2020-03-16 17:24:37 -0700
committerGitHub <noreply@github.com>2020-03-16 17:24:37 -0700
commit5467faf5cd52ba2da3e331e6c950a3860c559010 (patch)
tree9531fd3cdce64776c1713fff52782073f4d7934b /src/wat-writer.cc
parent261dfdd75d8199298c9e0143e351322cc79c996a (diff)
downloadwabt-5467faf5cd52ba2da3e331e6c950a3860c559010.tar.gz
wabt-5467faf5cd52ba2da3e331e6c950a3860c559010.tar.bz2
wabt-5467faf5cd52ba2da3e331e6c950a3860c559010.zip
Parse struct fields (#1355)
This allows the following field formats: * `(struct (field $name i32))` * `(struct (field $name (mut i32)))` * `(struct (field i32))` * `(struct (field (mut i32)))` * `(struct (mut i32))` * `(struct i32)`
Diffstat (limited to 'src/wat-writer.cc')
-rw-r--r--src/wat-writer.cc21
1 files changed, 18 insertions, 3 deletions
diff --git a/src/wat-writer.cc b/src/wat-writer.cc
index 639e7194..eff63c9f 100644
--- a/src/wat-writer.cc
+++ b/src/wat-writer.cc
@@ -1373,15 +1373,30 @@ void WatWriter::WriteTypeEntry(const TypeEntry& type) {
WriteOpenSpace("func");
WriteFuncSigSpace(cast<FuncType>(&type)->sig);
WriteCloseSpace();
- WriteCloseNewline();
break;
- case TypeEntryKind::Struct:
+ case TypeEntryKind::Struct: {
+ auto* struct_type = cast<StructType>(&type);
WriteOpenSpace("struct");
+ Index field_index = 0;
+ for (auto&& field : struct_type->fields) {
+ // TODO: Write shorthand if there is no name.
+ WriteOpenSpace("field");
+ WriteNameOrIndex(field.name, field_index++, NextChar::Space);
+ if (field.mutable_) {
+ WriteOpenSpace("mut");
+ }
+ WriteType(field.type, NextChar::Space);
+ if (field.mutable_) {
+ WriteCloseSpace();
+ }
+ WriteCloseSpace();
+ }
WriteCloseSpace();
- WriteCloseNewline();
break;
+ }
}
+ WriteCloseNewline();
}
void WatWriter::WriteStartFunction(const Var& start) {