1 write to DefaultInspectionContext
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.Utilities (1)
ResultProviderTestBase.cs (1)
53DefaultInspectionContext = defaultInspectionContext;
16 references to DefaultInspectionContext
Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.ResultProvider.UnitTests (12)
CustomResultProviderTests.cs (1)
61var value = CreateDkmClrValue(type.Instantiate()).GetMemberValue("P", (int)MemberTypes.Property, "C", DefaultInspectionContext);
ExpansionTests.cs (6)
2331var memberValue = value.GetMemberValue("P", (int)System.Reflection.MemberTypes.Property, "C", DefaultInspectionContext); 2394resultProvider.GetChildren(evalResult, workList, n, DefaultInspectionContext, r => getChildrenResult = r); 2432resultProvider.GetChildren(evalResult, workList, n, DefaultInspectionContext, r => getChildrenResult = r); 2479resultProvider.GetChildren(evalResult, workList, n, DefaultInspectionContext, r => getChildrenResult = r); 2507InspectionContext: DefaultInspectionContext, 2520InspectionContext: DefaultInspectionContext,
FormatSpecifierTests.cs (4)
484var memberValue = value.GetMemberValue("P", (int)System.Reflection.MemberTypes.Property, "C", DefaultInspectionContext); 488memberValue = value.GetMemberValue("Q", (int)System.Reflection.MemberTypes.Property, "C", DefaultInspectionContext); 534var memberValue = value.GetMemberValue("P", (int)System.Reflection.MemberTypes.Property, "C", DefaultInspectionContext); 538memberValue = value.GetMemberValue("Q", (int)System.Reflection.MemberTypes.Property, "C", DefaultInspectionContext);
ResultsViewTests.cs (1)
1620var memberValue = value.GetMemberValue("P", (int)System.Reflection.MemberTypes.Property, "C", DefaultInspectionContext);
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.Utilities (4)
ResultProviderTestBase.cs (4)
142return clrValue.HasUnderlyingString(DefaultInspectionContext); 148return clrValue.GetUnderlyingString(DefaultInspectionContext); 204InspectionContext: inspectionContext ?? DefaultInspectionContext, 255evalResult.GetChildren(workList, initialRequestSize, inspectionContext ?? DefaultInspectionContext, r => { getChildrenResult = r; });