1 instantiation of RetargetingPropertySymbol
Microsoft.CodeAnalysis.VisualBasic (1)
Symbols\Retargeting\RetargetingSymbolTranslator.vb (1)
59Return New RetargetingPropertySymbol(Me, DirectCast(symbol, PropertySymbol))
13 references to RetargetingPropertySymbol
Microsoft.CodeAnalysis.VisualBasic (9)
Symbols\Retargeting\RetargetingParameterSymbol.vb (3)
37Public Shared Function CreatePropertyParameter(retargetingProperty As RetargetingPropertySymbol, underlyingParameter As ParameterSymbol) As RetargetingParameterSymbol 300Private ReadOnly _retargetingProperty As RetargetingPropertySymbol 302Public Sub New(retargetingProperty As RetargetingPropertySymbol, underlyingParameter As ParameterSymbol)
Symbols\Retargeting\RetargetingPropertySymbol.vb (1)
45If TypeOf underlyingProperty Is RetargetingPropertySymbol Then
Symbols\Retargeting\RetargetingSymbolTranslator.vb (5)
34Private ReadOnly _createRetargetingProperty As Func(Of Symbol, RetargetingPropertySymbol) 57Private Function CreateRetargetingProperty(symbol As Symbol) As RetargetingPropertySymbol 1034Public Function Retarget([property] As PropertySymbol) As RetargetingPropertySymbol 1035Return DirectCast(SymbolMap.GetOrAdd([property], _retargetingModule._createRetargetingProperty), RetargetingPropertySymbol) 1076Return DirectCast(SymbolMap.GetOrAdd([property], _retargetingModule._createRetargetingProperty), RetargetingPropertySymbol)
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (1)
CodeGen\CodeGenTests.vb (1)
10432Assert.IsType(Of Microsoft.CodeAnalysis.VisualBasic.Symbols.Retargeting.RetargetingPropertySymbol)(c1Current1)
Microsoft.CodeAnalysis.VisualBasic.Symbol.UnitTests (3)
SymbolsTests\Retargeting\RetargetingCustomAttributes.vb (1)
203Assert.IsType(Of RetargetingPropertySymbol)(testProperty)
SymbolsTests\Retargeting\RetargetingTests.vb (2)
187CheckUnderlyingMember(source, DirectCast(retargeting, RetargetingPropertySymbol).UnderlyingProperty) 1962Assert.True(CType(retargetingType.GetMember("TestProperty"), RetargetingPropertySymbol).UnderlyingProperty.ShadowsExplicitly)