diff lexer/Token.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 09b4d74cb3f5
children 6a5f745d351c
line wrap: on
line diff
--- a/lexer/Token.d	Thu May 08 10:54:29 2008 +0200
+++ b/lexer/Token.d	Wed May 21 21:05:23 2008 +0200
@@ -136,6 +136,8 @@
     Switch, Case, Default,
     Return, Cast,
 
+    String,
+
     Module, Import,
 
 }
@@ -194,6 +196,7 @@
         Tok.Seperator:"Seperator",
         Tok.Cast:"Cast",
         Tok.Module:"Module",
-        Tok.Import:"Import"
+        Tok.Import:"Import",
+        Tok.String:"String"
     ];
 }