summaryrefslogtreecommitdiff
path: root/vala/valaproperty.vala
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2008-11-09 22:43:27 +0000
committerJürg Billeter <juergbi@src.gnome.org>2008-11-09 22:43:27 +0000
commit40668a3951bba2462d7d164f1c9b6a05715040b4 (patch)
tree33e979f24a959655bcf6d9e73d1bffc08fdf3f2a /vala/valaproperty.vala
parente13a4cc57ade4a8ff77798f2b9ee3ce8b16ae6c2 (diff)
downloadvala-40668a3951bba2462d7d164f1c9b6a05715040b4.tar.gz
Ensure attributes of field, property, parameter, and return types are
2008-11-09 Jürg Billeter <j@bitron.ch> * vala/valacreationmethod.vala: * vala/valadelegate.vala: * vala/valadelegatetype.vala: * vala/valaenum.vala: * vala/valafield.vala: * vala/valaformalparameter.vala: * vala/valamethod.vala: * vala/valaproperty.vala: * vala/valastruct.vala: * vala/valavaluetype.vala: Ensure attributes of field, property, parameter, and return types are processed before querying C header filenames svn path=/trunk/; revision=2006
Diffstat (limited to 'vala/valaproperty.vala')
-rw-r--r--vala/valaproperty.vala4
1 files changed, 2 insertions, 2 deletions
diff --git a/vala/valaproperty.vala b/vala/valaproperty.vala
index 2026a7b21..3dc081174 100644
--- a/vala/valaproperty.vala
+++ b/vala/valaproperty.vala
@@ -421,8 +421,8 @@ public class Vala.Property : Member, Lockable {
}
analyzer.current_symbol = this;
- property_type.accept (analyzer);
-
+ property_type.check (analyzer);
+
if (get_accessor != null) {
get_accessor.accept (analyzer);
}