comparison parser/Action.d @ 146:8c09fdaa724e

Parsing for-loop.
author Anders Johnsen <skabet@gmail.com>
date Mon, 21 Jul 2008 18:16:50 +0200
parents 6e6355fb5f0f
children 393a1f47a6d2 6c5a3c0bb4fb
comparison
equal deleted inserted replaced
145:a14ac9e5c858 146:8c09fdaa724e
286 return null; 286 return null;
287 } 287 }
288 288
289 /** 289 /**
290 */ 290 */
291 StmtT actOnForStmt(ref Token forTok, StmtT init, ExprT cond, ExprT incre, StmtT whileBody)
292 {
293 return null;
294 }
295
296 /**
297 */
291 StmtT actOnDeclStmt(DeclT decl) 298 StmtT actOnDeclStmt(DeclT decl)
292 { 299 {
293 return null; 300 return null;
294 } 301 }
295 302