Exemplo n.º 1
0
Arquivo: Arg.cs Projeto: 7shi/LLPML
 public static Arg NewVar(BlockBase parent, VarDeclare target)
 {
     var ret = new Arg();
     ret.init1(parent, target.Name, null);
     ret.target = target;
     return ret;
 }
Exemplo n.º 2
0
Arquivo: Arg.cs Projeto: 7shi/LLPML
 public static new Arg New(BlockBase parent, string name, TypeBase type)
 {
     var ret = new Arg();
     ret.init1(parent, name, type);
     return ret;
 }
Exemplo n.º 3
0
 protected void InsertArg(Arg arg)
 {
     args.Insert(0, arg);
     autoArgs.Insert(0, arg);
 }