Example #1
0
 public EmitForStatement(EmitVariableDeclarationStatement initializer, EmitExpression predicate, IEmitStatement incrementor, IEmitStatement body)
 {
     Initializer = initializer;
     Predicate   = predicate;
     Incrementor = incrementor;
     Body        = body;
 }
Example #2
0
 public static EmitForStatement For(EmitVariableDeclarationStatement initializer = null, EmitExpression predicate = null,
     IEmitStatement incrementor = null, IEmitStatement body = null)
 {
     return new EmitForStatement(initializer, predicate, incrementor, body);
 }
Example #3
0
 public static EmitForStatement For(EmitVariableDeclarationStatement initializer = null, EmitExpression predicate = null,
                                    IEmitStatement incrementor = null, IEmitStatement body = null)
 {
     return(new EmitForStatement(initializer, predicate, incrementor, body));
 }