Esempio n. 1
0
 public LocalVariableDeclaration(UnannType unanntype, Identifier variabledeclarator)
 {
     this.unannType          = unanntype;
     this.variableDeclarator = variabledeclarator;
 }
Esempio n. 2
0
 public FormalParameter(UnannType unanntype, Identifier variabledeclarator)
 {
     this.unannType          = unanntype;
     this.variableDeclarator = variabledeclarator;
 }
Esempio n. 3
0
 public ArrayType(UnannType arrayType)
 {
     this.arrayType = arrayType;
 }