diff parser/Action.d @ 194:08f68d684047

Rename some files. Hopefully we can get a more iterative sema pass, that's a lot easier to "get startet with". Also added support for alias.
author Anders Johnsen <skabet@gmail.com>
date Tue, 29 Jul 2008 13:54:44 +0200
parents 7b274cfdc1dc
children
line wrap: on
line diff
--- a/parser/Action.d	Fri Jul 25 15:31:16 2008 +0200
+++ b/parser/Action.d	Tue Jul 29 13:54:44 2008 +0200
@@ -175,6 +175,11 @@
         return null;
     }
 
+    DeclT actOnAliasDecl(DeclT decl, Attribute att)
+    {
+        return null;
+    }
+
     /**
       Add a struct member to a struct.
      */
@@ -430,6 +435,14 @@
     {
         return null;
     }
+
+    /**
+      Null expression.
+     */
+    ExprT actOnNullExpr(SLoc pos)
+    {
+        return null;
+    }
 }
 
 /**