Microsoft.JScript.JSWrappedMethod.GetMethodInfo C# (CSharp) Method

GetMethodInfo() private method

private GetMethodInfo ( CompilerGlobals compilerGlobals ) : MethodInfo
compilerGlobals CompilerGlobals
return System.Reflection.MethodInfo
      internal override MethodInfo GetMethodInfo(CompilerGlobals compilerGlobals){
        if (this.method is JSMethod)
          return ((JSMethod)(this.method)).GetMethodInfo(compilerGlobals);
        else
          return this.method;
      }