[vala/wip/transform: 56/97] Report error for unsupported GVariant (de)serialization
- From: Rico Tzschichholz <ricotz src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [vala/wip/transform: 56/97] Report error for unsupported GVariant (de)serialization
- Date: Mon, 21 Jan 2019 18:43:21 +0000 (UTC)
commit 500ac0b15290643a8fc11fc31048359da13b7a6a
Author: Rico Tzschichholz <ricotz t-online de>
Date: Mon Oct 22 13:16:39 2012 +0200
Report error for unsupported GVariant (de)serialization
codegen/valagvarianttransformer.vala | 8 ++++++++
1 file changed, 8 insertions(+)
---
diff --git a/codegen/valagvarianttransformer.vala b/codegen/valagvarianttransformer.vala
index 2114e67ca..8d0f1b923 100644
--- a/codegen/valagvarianttransformer.vala
+++ b/codegen/valagvarianttransformer.vala
@@ -522,6 +522,10 @@ public class Vala.GVariantTransformer : CCodeTransformer {
result = deserialize_hash_table ((ObjectType) type, expr.inner);
}
+ if (result == null) {
+ Report.error (type.source_reference, "GVariant deserialization of type `%s' is not
supported".printf (type.to_string ()));
+ }
+
context.analyzer.replaced_nodes.add (expr.inner);
expr.inner = result;
b.check (this);
@@ -561,6 +565,10 @@ public class Vala.GVariantTransformer : CCodeTransformer {
result = serialize_hash_table ((ObjectType) type, expr);
}
+ if (result == null) {
+ Report.error (type.source_reference, "GVariant serialization of type `%s' is not
supported".printf (type.to_string ()));
+ }
+
result.target_type = target_type;
context.analyzer.replaced_nodes.add (expr);
old_parent_node.replace_expression (expr, result);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]