diff lexer/Keyword.d @ 42:4e879f82dd64 new_gen

Added some docs for the lexer - now you can understand _some_ of the madness going on here :)
author Anders Johnsen <skabet@gmail.com>
date Tue, 22 Apr 2008 22:25:07 +0200
parents 858b9805843d
children 381975d76baf
line wrap: on
line diff
--- a/lexer/Keyword.d	Tue Apr 22 19:30:51 2008 +0200
+++ b/lexer/Keyword.d	Tue Apr 22 22:25:07 2008 +0200
@@ -2,6 +2,10 @@
 
 import lexer.Token;
 
+/**
+  A list of keywords in an associative array that link a string
+  representation of the keyword to a Tok
+  */
 Tok[char[]] keywords;
 
 static this ()