diff trunk/src/cmd/ASTStats.d @ 797:cf2ad5df025c

Added documentation comments. Removed Lexer.loadKeywords() and revised Lexer.isReservedIdentifier(). Also removed Lexer.getTokens(). Renamed keywords to g_reservedIds. Renamed classNames to g_classNames. Added PRE and DMDBUG macros.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Fri, 29 Feb 2008 22:51:24 +0100
parents 8380fb2c765f
children
line wrap: on
line diff
--- a/trunk/src/cmd/ASTStats.d	Fri Feb 29 19:25:21 2008 +0100
+++ b/trunk/src/cmd/ASTStats.d	Fri Feb 29 22:51:24 2008 +0100
@@ -19,7 +19,7 @@
   /// Starts counting.
   uint[] count(Node root)
   {
-    table = new uint[classNames.length];
+    table = new uint[g_classNames.length];
     super.visitN(root);
     return table;
   }