예제 #1
0
 public FunctionDeclaration(UserCreatableID functionName, ParameterList parameterList, ReturnType returnType,
                            Statements statements)
 {
     FunctionName  = functionName;
     ParameterList = parameterList;
     ReturnType    = returnType;
     Statements    = statements;
 }
예제 #2
0
파일: Statement.cs 프로젝트: Laegas/CMC
 public StatementLoopStatement(Expression1 condition, Statements statements)
 {
     Condition  = condition;
     Statements = statements;
 }