Ejemplo n.º 1
0
 public VariableDeclarationSimple(VariableType variableType, UserCreatableID variableName,
                                  Expression1 expression)
 {
     VariableType = variableType;
     VariableName = variableName;
     Expression   = expression;
 }
Ejemplo n.º 2
0
 public FunctionDeclaration(UserCreatableID functionName, ParameterList parameterList, ReturnType returnType,
                            Statements statements)
 {
     FunctionName  = functionName;
     ParameterList = parameterList;
     ReturnType    = returnType;
     Statements    = statements;
 }
Ejemplo n.º 3
0
 public Parameter(VariableType parameterType, UserCreatableID parameterName)
 {
     this.ParameterType = parameterType;
     this.ParameterName = parameterName;
 }
Ejemplo n.º 4
0
 public StructVariableDeclaration(UserCreatableID structName, UserCreatableID variableName)
 {
     StructName   = structName;
     VariableName = variableName;
 }
Ejemplo n.º 5
0
 public Struct(UserCreatableID structName, VariableDeclarationList variableDeclarationList)
 {
     StructName = structName;
     VariableDeclarationList = variableDeclarationList;
 }
Ejemplo n.º 6
0
 public Identifier(UserCreatableID rootId, List <UserCreatableID> nestedIDs)
 {
     RootID    = rootId;
     NestedIDs = nestedIDs;
 }