int IDebugFuncEvalAbortedEvent2.GetAbortResult (FUNC_EVAL_ABORT_RESULT [] pResult)
      {
        LoggingUtils.PrintFunction ();

        pResult [0] = m_abortResult;

        return Constants.S_OK;
      }
      public FuncEvalAborted (string functionName, FUNC_EVAL_ABORT_RESULT abortResult)
      {
        m_functionName = functionName;

        m_abortResult = abortResult;
      }