summaryrefslogtreecommitdiff
path: root/vala/valaexpression.vala
diff options
context:
space:
mode:
authorJuerg Billeter <j@bitron.ch>2007-12-02 10:34:33 +0000
committerJürg Billeter <juergbi@src.gnome.org>2007-12-02 10:34:33 +0000
commit0de3b4a6c1d02a864fc9cbc8ed11b2eb7a4326db (patch)
tree7d403120023f19c8e2f49cbec3d38a7488e4ae38 /vala/valaexpression.vala
parent160d75b8e40911b86fa2383116454f4efaa5096c (diff)
downloadvala-0de3b4a6c1d02a864fc9cbc8ed11b2eb7a4326db.tar.gz
rename TypeReference to DataType
2007-12-02 Juerg Billeter <j@bitron.ch> * vala/valadatatype.vala, vala/Makefile.am: rename TypeReference to DataType * vala/parser.y, vala/vala.h, vala/*.vala, gobject/*.vala, vapigen/valagidlparser.vala: adapt after renaming svn path=/trunk/; revision=746
Diffstat (limited to 'vala/valaexpression.vala')
-rw-r--r--vala/valaexpression.vala4
1 files changed, 2 insertions, 2 deletions
diff --git a/vala/valaexpression.vala b/vala/valaexpression.vala
index f9ddb173d..01e7dface 100644
--- a/vala/valaexpression.vala
+++ b/vala/valaexpression.vala
@@ -32,14 +32,14 @@ public abstract class Vala.Expression : CodeNode {
*
* The semantic analyzer computes this value.
*/
- public TypeReference static_type { get; set; }
+ public DataType static_type { get; set; }
/*
* The static type this expression is expected to have.
*
* The semantic analyzer computes this value, lambda expressions use it.
*/
- public TypeReference expected_type { get; set; }
+ public DataType expected_type { get; set; }
/**
* The symbol this expression refers to.