diff trunk/src/Expressions.d @ 101:6f3c5473c5e5

- Implemented parsing TypeofExpression.
author aziz
date Sat, 07 Jul 2007 16:13:02 +0000
parents 538e8b546669
children 469188935d56
line wrap: on
line diff
--- a/trunk/src/Expressions.d	Sat Jul 07 13:55:01 2007 +0000
+++ b/trunk/src/Expressions.d	Sat Jul 07 16:13:02 2007 +0000
@@ -492,6 +492,15 @@
   }
 }
 
+class TypeofExpression : Expression
+{
+  Type type;
+  this(Type type)
+  {
+    this.type = type;
+  }
+}
+
 class TypeDotIdExpression : Expression
 {
   Type type;