コード例 #1
0
ファイル: LFunction.cs プロジェクト: MaxxWyndham/unluacNet
	  public LFunction(BHeader header, int[] code, LLocal[] locals, LObject[] constants, LUpvalue[] upvalues, LFunction[] functions, int maximumStackSize, int numUpValues, int numParams, int vararg)
	  {
		this.header = header;
		this.code = code;
		this.locals = locals;
		this.constants = constants;
		this.upvalues = upvalues;
		this.functions = functions;
		this.maximumStackSize = maximumStackSize;
		this.numUpvalues = numUpValues;
		this.numParams = numParams;
		this.vararg = vararg;
	  }
コード例 #2
0
ファイル: Declaration.cs プロジェクト: Knuxfan24/Marathon
 public Declaration(LLocal local)
 {
     Name  = local.ToString();
     Begin = local.Start;
     End   = local.End;
 }
コード例 #3
0
ファイル: Declaration.cs プロジェクト: WhiteBlackGoose/Sdk
 public Declaration(LLocal local)
 {
     this.Name  = local.ToString();
     this.Begin = local.Start;
     this.End   = local.End;
 }