diff options
author | Ben Smith <binji@chromium.org> | 2020-03-16 17:24:37 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-16 17:24:37 -0700 |
commit | 5467faf5cd52ba2da3e331e6c950a3860c559010 (patch) | |
tree | 9531fd3cdce64776c1713fff52782073f4d7934b /src/wat-writer.cc | |
parent | 261dfdd75d8199298c9e0143e351322cc79c996a (diff) | |
download | wabt-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.cc | 21 |
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) { |