diff trunk/src/dil/lexer/Token.d @ 612:c65b11c2074c

Added getDocComments() to class Node.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Mon, 07 Jan 2008 20:36:08 +0100
parents 2ed1e6d638cd
children e7811328e6c7
line wrap: on
line diff
--- a/trunk/src/dil/lexer/Token.d	Sun Jan 06 22:58:49 2008 +0100
+++ b/trunk/src/dil/lexer/Token.d	Mon Jan 07 20:36:08 2008 +0100
@@ -50,9 +50,10 @@
       string str;
       char pf; /// Postfix 'c', 'w', 'd' or 0 for none.
     version(D2)
-      Token* tok_str; /// Points to the contents of a token string stored as a
-                      /// doubly linked list. The last token is always '}' or
-                      /// EOF in case end of source text is "q{" EOF.
+      Token* tok_str; /++ Points to the contents of a token string stored as a
+                          doubly linked list. The last token is always '}' or
+                          EOF in case end of source text is "q{" EOF.
+                      +/
     }
     Identifier* ident;
     dchar  dchar_;