コード例 #1
0
 public DMASTProcStatementForLoop(DMASTProcStatementVarDeclaration variableDeclaration, DMASTCallable variable, DMASTExpression condition, DMASTExpression incrementer, DMASTProcBlockInner body)
 {
     VariableDeclaration = variableDeclaration;
     Variable            = variable;
     Condition           = condition;
     Incrementer         = incrementer;
     Body = body;
 }
コード例 #2
0
 public DMASTProcCall(DMASTCallable callable, DMASTCallParameter[] parameters)
 {
     Callable   = callable;
     Parameters = parameters;
 }