1 instantiation of RetargetingMethodSymbol
Microsoft.CodeAnalysis.VisualBasic (1)
Symbols\Retargeting\RetargetingSymbolTranslator.vb (1)
39Return New RetargetingMethodSymbol(Me, DirectCast(symbol, MethodSymbol))
18 references to RetargetingMethodSymbol
Microsoft.CodeAnalysis.VisualBasic (9)
Symbols\Retargeting\RetargetingMethodSymbol.vb (1)
63If TypeOf underlyingMethod Is RetargetingMethodSymbol Then
Symbols\Retargeting\RetargetingParameterSymbol.vb (3)
33Public Shared Function CreateMethodParameter(retargetingMethod As RetargetingMethodSymbol, underlyingParameter As ParameterSymbol) As RetargetingParameterSymbol 278Private ReadOnly _retargetingMethod As RetargetingMethodSymbol 280Public Sub New(retargetingMethod As RetargetingMethodSymbol, underlyingParameter As ParameterSymbol)
Symbols\Retargeting\RetargetingSymbolTranslator.vb (5)
29Private ReadOnly _createRetargetingMethod As Func(Of Symbol, RetargetingMethodSymbol) 37Private Function CreateRetargetingMethod(symbol As Symbol) As RetargetingMethodSymbol 884Public Function Retarget(method As MethodSymbol) As RetargetingMethodSymbol 885Return DirectCast(SymbolMap.GetOrAdd(method, _retargetingModule._createRetargetingMethod), RetargetingMethodSymbol) 892Return DirectCast(SymbolMap.GetOrAdd(method, _retargetingModule._createRetargetingMethod), RetargetingMethodSymbol)
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (1)
CodeGen\CodeGenTests.vb (1)
10364Assert.IsType(Of Microsoft.CodeAnalysis.VisualBasic.Symbols.Retargeting.RetargetingMethodSymbol)(c1GetEnumerator)
Microsoft.CodeAnalysis.VisualBasic.Symbol.UnitTests (8)
SymbolsTests\CompilationCreationTests.vb (2)
1832Assert.Same(localC3Foo2, (DirectCast(foo2, RetargetingMethodSymbol)).UnderlyingMethod) 1833Assert.Equal(1, ((DirectCast(foo2, RetargetingMethodSymbol)).Locations).Length)
SymbolsTests\Retargeting\RetargetCustomModifiers.vb (1)
140Assert.Equal((DirectCast(m1, RetargetingMethodSymbol)).UnderlyingMethod.CallingConvention, m1.CallingConvention)
SymbolsTests\Retargeting\RetargetingCustomAttributes.vb (4)
207Assert.IsType(Of RetargetingMethodSymbol)(testMethod) 216Assert.IsType(Of RetargetingMethodSymbol)(testMethod) 225Assert.IsType(Of RetargetingMethodSymbol)(testMethod) 236Assert.IsType(Of RetargetingMethodSymbol)(testMethod)
SymbolsTests\Retargeting\RetargetingTests.vb (1)
180Dim b = DirectCast(retargeting, RetargetingMethodSymbol)