Merge branch 'master' into feature/dev-utils-in-tests

This commit is contained in:
Mark McCaskey 2020-04-08 12:15:22 -07:00 committed by GitHub
commit 9e8d08a771
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -88,5 +88,7 @@ Here is the instructions that are implemented by this crate:
| `string.lift_memory` | ✅ | ✅ | ✅ | `#memidx` is not supported; `#encoding` is not supported but UTF-8 is assumed |
| `string.lower_memory` | ✅ | ✅ | ✅ | `#memidx` is not supported; `#encoding` is not supported but UTF-8 is assumed |
| `string.size` | ✅ | ✅ | ✅ | `#encoding` is not supported but UTF-8 is assumed |
| `record.lift` | ✅ | ✅ | ✅ | |
| `record.lower` | ✅ | ✅ | ✅ | |
| `call-adapter` | ❌ | ❌ | ❌ | |
| `defer-call-core` | ❌ | ❌ | ❌ | |

View File

@ -170,9 +170,9 @@ where
outputs.to_bytes(writer)?;
}
Type::Record(RecordType { fields }) => {
Type::Record(record_type) => {
TypeKind::Record.to_bytes(writer)?;
fields.to_bytes(writer)?;
record_type.to_bytes(writer)?;
}
}