diff lexer/Lexer.d @ 154:0ea5d2f3e96b

Parsing "this" as constructor. Also removed regex from the test run program(seg fault - dmd???)
author Anders Johnsen <skabet@gmail.com>
date Mon, 21 Jul 2008 21:45:54 +0200
parents 2be29b296081
children dc9bf56b7ace
line wrap: on
line diff
--- a/lexer/Lexer.d	Mon Jul 21 21:32:20 2008 +0200
+++ b/lexer/Lexer.d	Mon Jul 21 21:45:54 2008 +0200
@@ -84,7 +84,7 @@
         {
             case CharType.EOF:
                 SLoc loc;
-                return Token(Tok.EOF, loc + 1, 0); 
+                return Token(Tok.EOF, loc+1, 0); 
 
             case CharType.Whitespace:
                 position += 1;