1 write to SourceType
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
2978this.SourceType = sourceType;
9 references to SourceType
Microsoft.CodeAnalysis.CSharp (9)
CodeGen\EmitExpression.cs (2)
3569TypeSymbol type = boundSizeOfOperator.SourceType.Type; 3571EmitSymbolToken(type, boundSizeOfOperator.SourceType.Syntax);
FlowAnalysis\NullableWalker.cs (1)
13129VisitTypeExpression(node.SourceType);
Generated\BoundNodes.xml.Generated.cs (5)
2991if (sourceType != this.SourceType || constantValueOpt != this.ConstantValueOpt || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 10324this.Visit(node.SourceType); 11592BoundTypeExpression sourceType = (BoundTypeExpression)this.Visit(node.SourceType); 13747BoundTypeExpression sourceType = (BoundTypeExpression)this.Visit(node.SourceType); 16141new TreeDumperNode("sourceType", null, new TreeDumperNode[] { Visit(node.SourceType, null) }),
Operations\CSharpOperationFactory.cs (1)
1225ITypeSymbol? typeOperand = boundSizeOfOperator.SourceType.GetPublicTypeSymbol();