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