comparison parser/Action.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 cd066f3b539a
children 3a0cd42de9cc
comparison
equal deleted inserted replaced
103:09b4d74cb3f5 104:7ff4bc2accf2
290 { 290 {
291 return null; 291 return null;
292 } 292 }
293 293
294 /** 294 /**
295 This is called when strings are used in expression
296 */
297 ExprT actOnStringExp(Token t)
298 {
299 return null;
300 }
301
302 /**
295 Unary operator. 303 Unary operator.
296 */ 304 */
297 ExprT actOnUnaryOp(Token op, ExprT operand) 305 ExprT actOnUnaryOp(Token op, ExprT operand)
298 { 306 {
299 return null; 307 return null;