5 instantiations of DkmInspectionSession
Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.ResultProvider.UnitTests (3)
CSharpResultProviderTestBase.cs (1)
43return new DkmInspectionSession(ImmutableArray.Create<IDkmClrFormatter>(formatter), ImmutableArray.Create<IDkmClrResultProvider>(new CSharpResultProvider(formatter, formatter)));
CustomResultProviderTests.cs (1)
32new DkmInspectionSession(
Helpers\TestTypeExtensions.cs (1)
24var inspectionSession = new DkmInspectionSession(ImmutableArray.Create<IDkmClrFormatter>(formatter), ImmutableArray.Create<IDkmClrResultProvider>(new CSharpResultProvider()));
Microsoft.CodeAnalysis.VisualBasic.ExpressionEvaluator.ResultProvider.UnitTests (2)
Helpers\TestTypeExtensions.vb (1)
22Dim inspectionSession = New DkmInspectionSession(ImmutableArray.Create(Of IDkmClrFormatter)(New VisualBasicFormatter()), ImmutableArray.Create(Of IDkmClrResultProvider)(New VisualBasicResultProvider()))
VisualBasicResultProviderTestBase.vb (1)
22MyClass.New(New DkmInspectionSession(ImmutableArray.Create(Of IDkmClrFormatter)(formatter), ImmutableArray.Create(Of IDkmClrResultProvider)(New VisualBasicResultProvider(formatter, formatter))))
11 references to DkmInspectionSession
Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.ResultProvider.UnitTests (4)
CSharpResultProviderTestBase.cs (3)
29internal CSharpResultProviderTestBase(DkmInspectionSession inspectionSession, DkmInspectionContext defaultInspectionContext = null) : 36var inspectionSession = CreateDkmInspectionSession(); 40private static DkmInspectionSession CreateDkmInspectionSession(CSharpFormatter formatter = null)
Helpers\TestTypeExtensions.cs (1)
24var inspectionSession = new DkmInspectionSession(ImmutableArray.Create<IDkmClrFormatter>(formatter), ImmutableArray.Create<IDkmClrResultProvider>(new CSharpResultProvider()));
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.Utilities (6)
Debugger\Engine\DkmInspectionContext.cs (3)
26DkmInspectionSession InspectionSession, 42internal DkmInspectionContext(DkmInspectionSession inspectionSession, DkmEvaluationFlags evaluationFlags, uint radix, DkmRuntimeInstance runtimeInstance) 50public readonly DkmInspectionSession InspectionSession;
ResultProviderTestBase.cs (3)
47private readonly DkmInspectionSession _inspectionSession; 50internal ResultProviderTestBase(DkmInspectionSession inspectionSession, DkmInspectionContext defaultInspectionContext) 172DkmInspectionSession inspectionSession,
Microsoft.CodeAnalysis.VisualBasic.ExpressionEvaluator.ResultProvider.UnitTests (1)
VisualBasicResultProviderTestBase.vb (1)
25Private Sub New(inspectionSession As DkmInspectionSession)