1 write to SourceType
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
2931this.SourceType = sourceType;
9 references to SourceType
Microsoft.CodeAnalysis.CSharp (9)
CodeGen\EmitExpression.cs (2)
3525TypeSymbol type = boundSizeOfOperator.SourceType.Type; 3527EmitSymbolToken(type, boundSizeOfOperator.SourceType.Syntax);
FlowAnalysis\NullableWalker.cs (1)
12004VisitTypeExpression(node.SourceType);
Generated\BoundNodes.xml.Generated.cs (5)
2944if (sourceType != this.SourceType || constantValueOpt != this.ConstantValueOpt || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 10075this.Visit(node.SourceType); 11311BoundTypeExpression sourceType = (BoundTypeExpression)this.Visit(node.SourceType); 13437BoundTypeExpression sourceType = (BoundTypeExpression)this.Visit(node.SourceType); 15804new TreeDumperNode("sourceType", null, new TreeDumperNode[] { Visit(node.SourceType, null) }),
Operations\CSharpOperationFactory.cs (1)
1185ITypeSymbol? typeOperand = boundSizeOfOperator.SourceType.GetPublicTypeSymbol();