summaryrefslogtreecommitdiff
path: root/vala/valaproperty.vala
diff options
context:
space:
mode:
authorJuerg Billeter <j@bitron.ch>2008-03-08 16:55:29 +0000
committerJürg Billeter <juergbi@src.gnome.org>2008-03-08 16:55:29 +0000
commitfcb4bd760d20e3a478dbe975bd4b81535bcb8a10 (patch)
treecfc16748546c6fac375e18cc949bb3fe8706f1d4 /vala/valaproperty.vala
parentd805dda9632b4ee21951269bbf9fb6365e5a4390 (diff)
downloadvala-fcb4bd760d20e3a478dbe975bd4b81535bcb8a10.tar.gz
optimize access to automatic properties, patch by Rob Taylor
2008-03-08 Juerg Billeter <j@bitron.ch> * vala/valaclass.vala, vala/valaproperty.vala, vala/valapropertyaccessor.vala, vala/valasemanticanalyzer.vala, gobject/valaccodegeneratormemberaccess.vala: optimize access to automatic properties, patch by Rob Taylor svn path=/trunk/; revision=1110
Diffstat (limited to 'vala/valaproperty.vala')
-rw-r--r--vala/valaproperty.vala5
1 files changed, 5 insertions, 0 deletions
diff --git a/vala/valaproperty.vala b/vala/valaproperty.vala
index dbf0079fb..f52486f59 100644
--- a/vala/valaproperty.vala
+++ b/vala/valaproperty.vala
@@ -90,6 +90,11 @@ public class Vala.Property : Member, Lockable {
public bool overrides { get; set; }
/**
+ * Reference the the Field that holds this property
+ */
+ public Field field { get; set; }
+
+ /**
* Specifies whether this field may only be accessed with an instance of
* the contained type.
*/