Skip to content

Commit

Permalink
Support for BamlRecordType.TypeSerializerInfo in bamlreader
Browse files Browse the repository at this point in the history
  • Loading branch information
Sermus committed May 5, 2016
1 parent 7e321f8 commit e03d70a
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -488,6 +488,9 @@ void ProcessNext()
case BamlRecordType.PresentationOptionsAttribute:
this.ReadPresentationOptionsAttribute();
break;
case BamlRecordType.TypeSerializerInfo:
this.ReadTypeInfo();
break;
default:
throw new NotImplementedException("UnsupportedNode: " + currentType);
}
Expand Down Expand Up @@ -526,6 +529,7 @@ void ComputeBytesToSkip()
case BamlRecordType.TypeInfo:
case BamlRecordType.AttributeInfo:
case BamlRecordType.StringInfo:
case BamlRecordType.TypeSerializerInfo:
bytesToSkip = reader.ReadCompressedInt32();
break;
}
Expand Down

0 comments on commit e03d70a

Please sign in to comment.