Lines Matching defs:Step
155 ExprAST *Start, *End, *Step, *Body;
158 ExprAST *step, ExprAST *body)
159 : VarName(varname), Start(start), End(end), Step(step), Body(body) {}
325 // The step value is optional.
326 ExprAST *Step = 0;
329 Step = ParseExpression();
330 if (Step == 0) return 0;
340 return new ForExprAST(IdName, Start, End, Step, Body);
574 // step = stepexpr
575 // nextvariable = variable + step
611 // Emit the step value.
613 if (Step) {
614 StepVal = Step->Codegen();