1 write to BoundContainingTypeOpt
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1086this.BoundContainingTypeOpt = boundContainingTypeOpt;
9 references to BoundContainingTypeOpt
Microsoft.CodeAnalysis.CSharp (9)
CodeGen\Optimizer.cs (1)
2324if (receiverOpt is BoundTypeExpression { AliasOpt: null, BoundContainingTypeOpt: null, BoundDimensionsOpt: { IsEmpty: true }, Type: TypeParameterSymbol or NamedTypeSymbol { IsUnionType: true } } typeExpression)
FlowAnalysis\NullableWalker.cs (2)
12781if (node.BoundContainingTypeOpt != null) 12783VisitTypeExpression(node.BoundContainingTypeOpt);
FlowAnalysis\NullableWalker.DebugVerifier.cs (1)
373Visit(node.BoundContainingTypeOpt);
Generated\BoundNodes.xml.Generated.cs (5)
1102if (!Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(aliasOpt, this.AliasOpt) || boundContainingTypeOpt != this.BoundContainingTypeOpt || boundDimensionsOpt != this.BoundDimensionsOpt || typeWithAnnotations != this.TypeWithAnnotations || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 10104this.Visit(node.BoundContainingTypeOpt); 11230BoundTypeExpression? boundContainingTypeOpt = (BoundTypeExpression?)this.Visit(node.BoundContainingTypeOpt); 12970BoundTypeExpression? boundContainingTypeOpt = (BoundTypeExpression?)this.Visit(node.BoundContainingTypeOpt); 15651new TreeDumperNode("boundContainingTypeOpt", null, new TreeDumperNode[] { Visit(node.BoundContainingTypeOpt, null) }),