comparison 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
comparison
equal deleted inserted replaced
611:6d449e777f5d 612:c65b11c2074c
48 struct 48 struct
49 { 49 {
50 string str; 50 string str;
51 char pf; /// Postfix 'c', 'w', 'd' or 0 for none. 51 char pf; /// Postfix 'c', 'w', 'd' or 0 for none.
52 version(D2) 52 version(D2)
53 Token* tok_str; /// Points to the contents of a token string stored as a 53 Token* tok_str; /++ Points to the contents of a token string stored as a
54 /// doubly linked list. The last token is always '}' or 54 doubly linked list. The last token is always '}' or
55 /// EOF in case end of source text is "q{" EOF. 55 EOF in case end of source text is "q{" EOF.
56 +/
56 } 57 }
57 Identifier* ident; 58 Identifier* ident;
58 dchar dchar_; 59 dchar dchar_;
59 long long_; 60 long long_;
60 ulong ulong_; 61 ulong ulong_;