summaryrefslogtreecommitdiff
path: root/vala/valaexpression.vala
diff options
context:
space:
mode:
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.