2 instantiations of Expression
Microsoft.VisualStudio.IntegrationTest.Utilities (2)
InProcess\Debugger_InProc.cs (1)
54public Common.Expression GetExpression(string expressionText) => new Common.Expression(_debugger.GetExpression(expressionText));
InProcess\LocalsWindow_InProc.cs (1)
48return new Common.Expression(entry);
5 references to Expression
Microsoft.VisualStudio.IntegrationTest.Utilities (5)
InProcess\Debugger_InProc.cs (1)
54public Common.Expression GetExpression(string expressionText) => new Common.Expression(_debugger.GetExpression(expressionText));
InProcess\LocalsWindow_InProc.cs (1)
28public Common.Expression GetEntry(params string[] entryNames)
OutOfProcess\Debugger_OutOfProc.cs (1)
49var entry = _debuggerInProc.GetExpression(expressionText);
OutOfProcess\LocalsWindow_OutOfProc.Verifier.cs (2)
22var entry = _localsWindow._localsWindowInProc.GetEntry(entryName); 29var entry = _localsWindow._localsWindowInProc.GetEntry(entryNames);