diff parser/Action.d @ 68:381975d76baf new_gen

A LOT of bug fixing - also implemented implicit casts. If you do a --ast-dump-code on a target with some algebra of differant types, you should now see the type casts being made. Also, Tests are again back with only switches failing...
author Anders Johnsen <skabet@gmail.com>
date Thu, 01 May 2008 19:25:49 +0200
parents da551f90e03f
children 86aec2160221
line wrap: on
line diff
--- a/parser/Action.d	Tue Apr 29 20:15:22 2008 +0200
+++ b/parser/Action.d	Thu May 01 19:25:49 2008 +0200
@@ -242,6 +242,14 @@
     {
         return null;
     }
+
+    /**
+      Cast expression.
+     */
+    ExprT actOnCastExpr(Id type, ExprT exp)
+    {
+        return null;
+    }
 }
 
 /**