Skip to content

Commit

Permalink
Merge: serialization: fix a bug, improve doc and clean weird condition
Browse files Browse the repository at this point in the history
Pull-Request: #2297
Reviewed-by: Jean Privat <[email protected]>
  • Loading branch information
privat committed Aug 26, 2016
2 parents f78a35b + 6f63770 commit 39f109b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/binary/serialization.nit
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ class BinaryDeserializer

# An invalid attribute name is an heuristic for invalid data.
# Hitting an object end marker will result in an empty string.
assert next_attribute_name.is_valid_id else
if not next_attribute_name.is_valid_id then

var error
if next_attribute_name.is_empty then
Expand Down
2 changes: 1 addition & 1 deletion lib/serialization/serialization.nit
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ abstract class Deserializer
var errors = new Array[Error]
end

# Deserialization got wrong attribute names
# Error on invalid dynamic type for a deserialized attribute
class AttributeTypeError
super Error

Expand Down
2 changes: 1 addition & 1 deletion src/frontend/serialization_phase.nit
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ do
if type_name == "nullable Object" then
# Don't type check
code.add """
var {{{name}}} = v.deserialize_attribute("{{{attribute.serialize_name}}}", "{{{type_name}}}")
self.{{{name}}} = v.deserialize_attribute("{{{attribute.serialize_name}}}", "{{{type_name}}}")
"""
else code.add """
var {{{name}}} = v.deserialize_attribute("{{{attribute.serialize_name}}}", "{{{type_name}}}")
Expand Down

0 comments on commit 39f109b

Please sign in to comment.