diff parser/Action.d @ 146:8c09fdaa724e

Parsing for-loop.
author Anders Johnsen <skabet@gmail.com>
date Mon, 21 Jul 2008 18:16:50 +0200
parents 6e6355fb5f0f
children 393a1f47a6d2 6c5a3c0bb4fb
line wrap: on
line diff
--- a/parser/Action.d	Mon Jul 21 17:56:33 2008 +0200
+++ b/parser/Action.d	Mon Jul 21 18:16:50 2008 +0200
@@ -288,6 +288,13 @@
 
     /**
      */
+    StmtT actOnForStmt(ref Token forTok, StmtT init, ExprT cond, ExprT incre, StmtT whileBody)
+    {
+        return null;
+    }
+
+    /**
+     */
     StmtT actOnDeclStmt(DeclT decl)
     {
         return null;