1 write to SourceType
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
2973this.SourceType = sourceType;
9 references to SourceType
Microsoft.CodeAnalysis.CSharp (9)
CodeGen\EmitExpression.cs (2)
3594TypeSymbol type = boundSizeOfOperator.SourceType.Type; 3596EmitSymbolToken(type, boundSizeOfOperator.SourceType.Syntax);
FlowAnalysis\NullableWalker.cs (1)
13235VisitTypeExpression(node.SourceType);
Generated\BoundNodes.xml.Generated.cs (5)
2986if (sourceType != this.SourceType || constantValueOpt != this.ConstantValueOpt || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 10311this.Visit(node.SourceType); 11590BoundTypeExpression sourceType = (BoundTypeExpression)this.Visit(node.SourceType); 13754BoundTypeExpression sourceType = (BoundTypeExpression)this.Visit(node.SourceType); 16151new TreeDumperNode("sourceType", null, new TreeDumperNode[] { Visit(node.SourceType, null) }),
Operations\CSharpOperationFactory.cs (1)
1225ITypeSymbol? typeOperand = boundSizeOfOperator.SourceType.GetPublicTypeSymbol();