4 references to GetFormattedExceptionStack
Microsoft.VisualStudio.LanguageServices (4)
ErrorReporting\VisualStudioErrorReportingService.cs (2)
48var stackTrace = exception is null ? "" : GetFormattedExceptionStack(exception); 61var errorInfo = GetFormattedExceptionStack(exception);
ErrorReporting\VisualStudioErrorReportingService.ExceptionFormatting.cs (2)
40text = $"{text}{Environment.NewLine}---> (Inner Exception #{i}) {GetFormattedExceptionStack(aggregate.InnerExceptions[i])} <--- {Environment.NewLine}"; 66stackText += " ---> " + GetFormattedExceptionStack(innerException) + Environment.NewLine +