コード例 #1
0
ファイル: LibraryElement.cs プロジェクト: UGTU/Old-School
 public LibraryElement(IdElement Name, ImplementationElement Implementation, ExportsElement Exports, CompoundElement Compound)
 {
     name           = Name;
     implementation = Implementation;
     exports        = Exports;
     compound       = Compound;
 }
コード例 #2
0
ファイル: ProgramElement.cs プロジェクト: UGTU/Old-School
 public ProgramElement(IdElement Name, IdListElement Params, ImplementationElement Implementation, CompoundElement Compound)
 {
     name           = Name;
     pparams        = Params;
     implementation = Implementation;
     compound       = Compound;
 }