diff parser/Action.d @ 104:7ff4bc2accf2 new_gen

Lexing more types of strings. Now all's left is to parse the string in the AST.
author Anders Johnsen <skabet@gmail.com>
date Wed, 21 May 2008 21:05:23 +0200
parents cd066f3b539a
children 3a0cd42de9cc
line wrap: on
line diff
--- a/parser/Action.d	Thu May 08 10:54:29 2008 +0200
+++ b/parser/Action.d	Wed May 21 21:05:23 2008 +0200
@@ -292,6 +292,14 @@
     }
 
     /**
+      This is called when strings are used in expression
+     */
+    ExprT actOnStringExp(Token t)
+    {
+        return null;
+    }
+
+    /**
       Unary operator.
      */
     ExprT actOnUnaryOp(Token op, ExprT operand)