comparison lexer/Token.d @ 103:09b4d74cb3f5 new_gen

Parsing char, wchar and dchar as basic types.
author Anders Johnsen <skabet@gmail.com>
date Thu, 08 May 2008 10:54:29 +0200
parents 48bb2287c035
children 7ff4bc2accf2
comparison
equal deleted inserted replaced
102:cd066f3b539a 103:09b4d74cb3f5
119 Byte, Ubyte, 119 Byte, Ubyte,
120 Short, Ushort, 120 Short, Ushort,
121 Int, Uint, 121 Int, Uint,
122 Long, Ulong, 122 Long, Ulong,
123 123
124 Char, Wchar, Dchar,
125
124 Float, Double, 126 Float, Double,
125 127
126 Bool, 128 Bool,
127 129
128 Void, 130 Void,
153 Tok.Identifier:"Identifier", 155 Tok.Identifier:"Identifier",
154 Tok.Byte:"Byte", 156 Tok.Byte:"Byte",
155 Tok.Short:"Short", 157 Tok.Short:"Short",
156 Tok.Int:"Int", 158 Tok.Int:"Int",
157 Tok.Long:"Long", 159 Tok.Long:"Long",
160 Tok.Char:"Char",
161 Tok.Wchar:"Wchar",
162 Tok.Dchar:"Dchar",
158 Tok.Bool:"Bool", 163 Tok.Bool:"Bool",
159 Tok.Void:"Void", 164 Tok.Void:"Void",
160 Tok.Eq:"Eq", 165 Tok.Eq:"Eq",
161 Tok.Ne:"Ne", 166 Tok.Ne:"Ne",
162 Tok.Lt:"Lt", 167 Tok.Lt:"Lt",