4 instantiations of MethodDebugInfo
Microsoft.CodeAnalysis.ExpressionEvaluator.ExpressionCompiler (3)
PDB\MethodDebugInfo.cs (1)
17public static readonly MethodDebugInfo<TTypeSymbol, TLocalSymbol> None = new MethodDebugInfo<TTypeSymbol, TLocalSymbol>(
PDB\MethodDebugInfo.Native.cs (1)
176return new MethodDebugInfo<TTypeSymbol, TLocalSymbol>(
PDB\MethodDebugInfo.Portable.cs (1)
74return new MethodDebugInfo<TTypeSymbol, TLocalSymbol>(
Microsoft.CodeAnalysis.VisualBasic.ExpressionEvaluator.ExpressionCompiler (1)
EvaluationContext.vb (1)
321Return New MethodDebugInfo(Of TypeSymbol, LocalSymbol)(
28 references to MethodDebugInfo
Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.ExpressionCompiler (7)
CompilationContext.cs (1)
60MethodDebugInfo<TypeSymbol, LocalSymbol> methodDebugInfo)
EvaluationContext.cs (6)
40private readonly MethodDebugInfo<TypeSymbol, LocalSymbol> _methodDebugInfo; 49MethodDebugInfo<TypeSymbol, LocalSymbol> methodDebugInfo) 90methodDebugInfo: MethodDebugInfo<TypeSymbol, LocalSymbol>.None); 160var debugInfo = MethodDebugInfo<TypeSymbol, LocalSymbol>.ReadMethodDebugInfo(typedSymReader, symbolProvider, methodToken, methodVersion, ilOffset, isVisualBasicMethod: false); 164MethodDebugInfo<TypeSymbol, LocalSymbol>.GetLocals(
Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.ExpressionCompiler.UnitTests (6)
ExpressionCompilerTestBase.cs (2)
509internal static MethodDebugInfo<TypeSymbol, LocalSymbol> GetMethodDebugInfo(RuntimeInstance runtime, string qualifiedMethodName, int ilOffset = 0) 518return MethodDebugInfo<TypeSymbol, LocalSymbol>.ReadMethodDebugInfo((ISymUnmanagedReader3)symReader, symbolProvider, MetadataTokens.GetToken(peMethod.Handle), methodVersion: 1, ilOffset: ilOffset, isVisualBasicMethod: false);
UsingDebugInfoTests.cs (4)
238var info = GetMethodDebugInfo(runtime, "B.C.M"); 289var info = GetMethodDebugInfo(runtime, "B.C.M"); 341var debugInfo1 = GetMethodDebugInfo(runtime, "B.C.M1"); 354var debugInfo2 = GetMethodDebugInfo(runtime, "D.E.M2");
Microsoft.CodeAnalysis.ExpressionEvaluator.ExpressionCompiler (3)
PDB\MethodDebugInfo.cs (1)
17public static readonly MethodDebugInfo<TTypeSymbol, TLocalSymbol> None = new MethodDebugInfo<TTypeSymbol, TLocalSymbol>(
PDB\MethodDebugInfo.Native.cs (1)
60public static unsafe MethodDebugInfo<TTypeSymbol, TLocalSymbol> ReadMethodDebugInfo(
PDB\MethodDebugInfo.Portable.cs (1)
19public static MethodDebugInfo<TTypeSymbol, TLocalSymbol> ReadFromPortable(
Microsoft.CodeAnalysis.VisualBasic.ExpressionEvaluator.ExpressionCompiler (9)
CompilationContext.vb (1)
52methodDebugInfo As MethodDebugInfo(Of TypeSymbol, LocalSymbol),
EvaluationContext.vb (8)
44Private ReadOnly _methodDebugInfo As MethodDebugInfo(Of TypeSymbol, LocalSymbol) 53methodDebugInfo As MethodDebugInfo(Of TypeSymbol, LocalSymbol)) 92methodDebugInfo:=MethodDebugInfo(Of TypeSymbol, LocalSymbol).None) 165Dim debugInfo As MethodDebugInfo(Of TypeSymbol, LocalSymbol) 171debugInfo = MethodDebugInfo(Of TypeSymbol, LocalSymbol).ReadMethodDebugInfo(typedSymReader, symbolProvider, methodToken, methodVersion, ilOffset, isVisualBasicMethod:=True) 187MethodDebugInfo(Of TypeSymbol, LocalSymbol).GetLocals(localsBuilder, symbolProvider, localNames, localInfo, Nothing, debugInfo.TupleLocalMap) 253Friend Shared Function SynthesizeMethodDebugInfoForDtee(assemblyReaders As ImmutableArray(Of AssemblyReaders)) As MethodDebugInfo(Of TypeSymbol, LocalSymbol) 283Dim debugInfo = MethodDebugInfo(Of TypeSymbol, LocalSymbol).ReadMethodDebugInfo(symReader,
Microsoft.CodeAnalysis.VisualBasic.ExpressionEvaluator.ExpressionCompiler.UnitTests (3)
DteeTests.vb (1)
417Private Shared Sub CheckDteeMethodDebugInfo(methodDebugInfo As MethodDebugInfo(Of TypeSymbol, LocalSymbol), ParamArray namespaceNames As String())
ExpressionCompilerTestBase.vb (2)
464Friend Shared Function GetMethodDebugInfo(runtime As RuntimeInstance, qualifiedMethodName As String, Optional ilOffset As Integer = 0) As MethodDebugInfo(Of TypeSymbol, LocalSymbol) 470Return MethodDebugInfo(Of TypeSymbol, LocalSymbol).ReadMethodDebugInfo(DirectCast(symReader, ISymUnmanagedReader3), symbolProvider, MetadataTokens.GetToken(peMethod.Handle), methodVersion:=1, ilOffset:=ilOffset, isVisualBasicMethod:=True)