Base:
property
ContainingSymbol
Microsoft.CodeAnalysis.VisualBasic.Symbols.ErrorTypeSymbol.ContainingSymbol
10 references to ContainingSymbol
Microsoft.CodeAnalysis.VisualBasic (4)
Symbols\SubstitutedErrorType.vb (4)
75If Me.ContainingSymbol Is Nothing OrElse Me.ContainingSymbol.IsDefinition Then 87Return New SubstitutedErrorType(Me.ContainingSymbol, _fullInstanceType, substitution) 160Dim container As Symbol = ContainingSymbol
Microsoft.CodeAnalysis.VisualBasic.Symbol.UnitTests (6)
SymbolsTests\Metadata\PE\MissingTypeReferences.vb (6)
87genericBase = DirectCast(genericBase.ContainingSymbol, SubstitutedErrorType) 91genericBase = DirectCast(genericBase.ContainingSymbol, SubstitutedErrorType) 208Assert.Equal(SymbolKind.NamedType, genericBase.ContainingSymbol.Kind) 228Assert.Equal(SymbolKind.ErrorType, genericBase.ContainingSymbol.Kind) 230Dim type1 = DirectCast(genericBase.ContainingSymbol, SubstitutedErrorType) 252Dim type2 = DirectCast(DirectCast(genericBase.ContainingSymbol.ContainingSymbol.OriginalDefinition, NamedTypeSymbol).Construct(type1.TypeArguments), SubstitutedErrorType)