public MethodHeader(Result returnType, MethodDeclarator methodDeclarator)
 {
     this.returnType       = returnType;
     this.methodDeclarator = methodDeclarator;
 }
Example #2
0
 public MethodHeader(Type result, MethodDeclarator methodDeclarator)
 {
     this.methodDeclarator = methodDeclarator;
 }
Example #3
0
 public MethodHeader(VoidType TypeOfMethod, MethodDeclarator methoddeclarator)
 {
     this.TypeOfMethod = TypeOfMethod; this.methoddeclarator = methoddeclarator;
 }