diff lexer/Keyword.d @ 136:2be29b296081

Lots of changes: - Parsing classes and interfaces - Fixed some seg faults in sema - Supporting "private" to some extend - And a lot of other small fixes
author johnsen@johnsen-laptop
date Fri, 11 Jul 2008 21:47:57 +0200
parents c3b24e7e8cf8
children 927ae00bd9d2
line wrap: on
line diff
--- a/lexer/Keyword.d	Wed Jul 09 13:38:11 2008 +0200
+++ b/lexer/Keyword.d	Fri Jul 11 21:47:57 2008 +0200
@@ -63,7 +63,7 @@
 
         // attributse
         "public"    : Tok.Public,
-        "private"   : Tok.Public,
+        "private"   : Tok.Private,
         "protected" : Tok.Protected,
         "package"   : Tok.Package,
         "export"    : Tok.Export,