Esempio n. 1
0
 public LibraryElement(IdElement Name, ImplementationElement Implementation, ExportsElement Exports, CompoundElement Compound)
 {
     name           = Name;
     implementation = Implementation;
     exports        = Exports;
     compound       = Compound;
 }
Esempio n. 2
0
 public ProgramElement(IdElement Name, IdListElement Params, ImplementationElement Implementation, CompoundElement Compound)
 {
     name           = Name;
     pparams        = Params;
     implementation = Implementation;
     compound       = Compound;
 }