Exemplo n.º 1
0
 public FunctionDeclaration(UserCreatableID functionName, ParameterList parameterList, ReturnType returnType,
                            Statements statements)
 {
     FunctionName  = functionName;
     ParameterList = parameterList;
     ReturnType    = returnType;
     Statements    = statements;
 }
Exemplo n.º 2
0
 public StatementLoopStatement(Expression1 condition, Statements statements)
 {
     Condition  = condition;
     Statements = statements;
 }