Alexandria.Plugins.General.LuaInstruction.GetArgumentUpValue C# (CSharp) Method

GetArgumentUpValue() private method

private GetArgumentUpValue ( int value ) : string
value int
return string
        string GetArgumentUpValue(int value)
        {
            return "UpValue(" + (value < Function.UpValues.Count ? Function.UpValues[value] : "Invalid index " + value) + ")";
        }