[vala/wip/attributes-clean: 9/32] On-demand Struct.is_integer_type
- From: Luca Bruno <lucabru src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [vala/wip/attributes-clean: 9/32] On-demand Struct.is_integer_type
- Date: Sat, 9 Jul 2011 12:52:59 +0000 (UTC)
commit db75714645a5772cce8ffe4f56df9a572a4ed1bc
Author: Luca Bruno <lucabru src gnome org>
Date: Thu Jul 7 11:52:59 2011 +0200
On-demand Struct.is_integer_type
vala/valastruct.vala | 16 ++++++++--------
1 files changed, 8 insertions(+), 8 deletions(-)
---
diff --git a/vala/valastruct.vala b/vala/valastruct.vala
index b34cd80..2610ebf 100644
--- a/vala/valastruct.vala
+++ b/vala/valastruct.vala
@@ -39,7 +39,7 @@ public class Vala.Struct : TypeSymbol {
private string lower_case_cprefix;
private string lower_case_csuffix;
private bool? boolean_type;
- private bool integer_type;
+ private bool? integer_type;
private bool floating_type;
private bool decimal_floating_type;
private bool? simple_type;
@@ -358,11 +358,12 @@ public class Vala.Struct : TypeSymbol {
* @return true if this is an integer type, false otherwise
*/
public bool is_integer_type () {
- if (base_type != null) {
- var st = base_struct;
- if (st != null && st.is_integer_type ()) {
- return true;
- }
+ var st = base_struct;
+ if (st != null && st.is_integer_type ()) {
+ return true;
+ }
+ if (integer_type == null) {
+ integer_type = get_attribute ("IntegerType") != null;
}
return integer_type;
}
@@ -465,7 +466,6 @@ public class Vala.Struct : TypeSymbol {
}
private void process_integer_type_attribute (Attribute a) {
- integer_type = true;
if (a.has_argument ("rank")) {
rank = a.get_integer ("rank");
}
@@ -661,7 +661,7 @@ public class Vala.Struct : TypeSymbol {
if (CodeContext.get ().profile == Profile.DOVA) {
if (is_boolean_type ()) {
return "false";
- } else if (integer_type || floating_type) {
+ } else if (is_integer_type () || floating_type) {
return "0";
}
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]