コード例 #1
0
 public MethodHeader(Result returnType, MethodDeclarator methodDeclarator)
 {
     this.returnType       = returnType;
     this.methodDeclarator = methodDeclarator;
 }
コード例 #2
0
 public MethodHeader(Type result, MethodDeclarator methodDeclarator)
 {
     this.methodDeclarator = methodDeclarator;
 }
コード例 #3
0
ファイル: Declaration.cs プロジェクト: n9546839/TJ42
 public MethodHeader(VoidType TypeOfMethod, MethodDeclarator methoddeclarator)
 {
     this.TypeOfMethod = TypeOfMethod; this.methoddeclarator = methoddeclarator;
 }