Exemplo n.º 1
0
Arquivo: If.cs Projeto: 7shi/LLPML
 public static If New(BlockBase parent)
 {
     var ret = new If();
     ret.init(parent);
     return ret;
 }
Exemplo n.º 2
0
Arquivo: If.cs Projeto: 7shi/LLPML
 public static CondBlock New(If parent)
 {
     var ret = new CondBlock();
     ret.Parent = parent;
     return ret;
 }