diff lexer/Token.d @ 22:e331e4e816e4

now handling structs to some extend
author johnsen@johnsen-laptop
date Fri, 18 Apr 2008 23:45:45 +0200
parents 0fb2d13dce37
children 69464d465284
line wrap: on
line diff
--- a/lexer/Token.d	Fri Apr 18 21:39:17 2008 +0200
+++ b/lexer/Token.d	Fri Apr 18 23:45:45 2008 +0200
@@ -76,6 +76,8 @@
 
     Bool,
 
+    Struct,
+
     If, Else,
     While,
     Return,
@@ -115,6 +117,7 @@
         Tok.While:"While",
         Tok.Comma:"Comma",
         Tok.Return:"Return",
+        Tok.Struct:"Struct",
         Tok.Seperator:"Seperator"
     ];
 }