comparison lexer/Token.d @ 104:7ff4bc2accf2 new_gen

Lexing more types of strings. Now all's left is to parse the string in the AST.
author Anders Johnsen <skabet@gmail.com>
date Wed, 21 May 2008 21:05:23 +0200
parents 09b4d74cb3f5
children 6a5f745d351c
comparison
equal deleted inserted replaced
103:09b4d74cb3f5 104:7ff4bc2accf2
133 133
134 If, Else, 134 If, Else,
135 While, 135 While,
136 Switch, Case, Default, 136 Switch, Case, Default,
137 Return, Cast, 137 Return, Cast,
138
139 String,
138 140
139 Module, Import, 141 Module, Import,
140 142
141 } 143 }
142 144
192 Tok.Struct:"Struct", 194 Tok.Struct:"Struct",
193 Tok.Colon:"Colon", 195 Tok.Colon:"Colon",
194 Tok.Seperator:"Seperator", 196 Tok.Seperator:"Seperator",
195 Tok.Cast:"Cast", 197 Tok.Cast:"Cast",
196 Tok.Module:"Module", 198 Tok.Module:"Module",
197 Tok.Import:"Import" 199 Tok.Import:"Import",
200 Tok.String:"String"
198 ]; 201 ];
199 } 202 }