[Serialization] Preserve a deinitializer's interface type.

We haven't actually needed this for anything, but we should probably follow
the invariants of the AST.

Swift SVN r22199
This commit is contained in:
Jordan Rose
2014-09-23 02:06:25 +00:00
parent 7fe346a091
commit 988b8c2033
3 changed files with 8 additions and 5 deletions

View File

@@ -40,7 +40,7 @@ const uint16_t VERSION_MAJOR = 0;
/// Serialized module format minor version number.
///
/// When the format changes IN ANY WAY, this number should be incremented.
const uint16_t VERSION_MINOR = 141;
const uint16_t VERSION_MINOR = 142;
using DeclID = Fixnum<31>;
using DeclIDField = BCFixed<31>;
@@ -844,7 +844,8 @@ namespace decls_block {
DeclIDField, // context decl
BCFixed<1>, // implicit?
BCFixed<1>, // objc?
TypeIDField // type (signature)
TypeIDField, // type (signature)
TypeIDField // interface type
// Trailed by a pattern for self.
>;