Exemple #1
0
Fichier : If.cs Projet : 7shi/LLPML
 public static If New(BlockBase parent)
 {
     var ret = new If();
     ret.init(parent);
     return ret;
 }
Exemple #2
0
Fichier : If.cs Projet : 7shi/LLPML
 public static CondBlock New(If parent)
 {
     var ret = new CondBlock();
     ret.Parent = parent;
     return ret;
 }