public TES5ObjectCallCustom(ITES5Referencer called, string functionName, ITES5Type returnType, TES5ObjectCallArguments arguments = null)
     : base(called, functionName, arguments)
 {
     this.returnType = returnType;
 }
 public TES5ObjectCall(ITES5Referencer called, string functionName, TES5ObjectCallArguments arguments)
 {
     this.AccessedObject = called;
     this.FunctionName   = functionName;
     this.Arguments      = arguments;
 }