1 write to SourceType
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
2926this.SourceType = sourceType;
9 references to SourceType
Microsoft.CodeAnalysis.CSharp (9)
CodeGen\EmitExpression.cs (2)
3522TypeSymbol type = boundSizeOfOperator.SourceType.Type; 3524EmitSymbolToken(type, boundSizeOfOperator.SourceType.Syntax);
FlowAnalysis\NullableWalker.cs (1)
11569VisitTypeExpression(node.SourceType);
Generated\BoundNodes.xml.Generated.cs (5)
2939if (sourceType != this.SourceType || constantValueOpt != this.ConstantValueOpt || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 10036this.Visit(node.SourceType); 11234BoundTypeExpression sourceType = (BoundTypeExpression)this.Visit(node.SourceType); 13250BoundTypeExpression sourceType = (BoundTypeExpression)this.Visit(node.SourceType); 15616new TreeDumperNode("sourceType", null, new TreeDumperNode[] { Visit(node.SourceType, null) }),
Operations\CSharpOperationFactory.cs (1)
1185ITypeSymbol? typeOperand = boundSizeOfOperator.SourceType.GetPublicTypeSymbol();