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