1 write to SourceType
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
2928this.SourceType = sourceType;
9 references to SourceType
Microsoft.CodeAnalysis.CSharp (9)
CodeGen\EmitExpression.cs (2)
3564TypeSymbol type = boundSizeOfOperator.SourceType.Type; 3566EmitSymbolToken(type, boundSizeOfOperator.SourceType.Syntax);
FlowAnalysis\NullableWalker.cs (1)
12386VisitTypeExpression(node.SourceType);
Generated\BoundNodes.xml.Generated.cs (5)
2941if (sourceType != this.SourceType || constantValueOpt != this.ConstantValueOpt || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 10074this.Visit(node.SourceType); 11313BoundTypeExpression sourceType = (BoundTypeExpression)this.Visit(node.SourceType); 13426BoundTypeExpression sourceType = (BoundTypeExpression)this.Visit(node.SourceType); 15795new TreeDumperNode("sourceType", null, new TreeDumperNode[] { Visit(node.SourceType, null) }),
Operations\CSharpOperationFactory.cs (1)
1185ITypeSymbol? typeOperand = boundSizeOfOperator.SourceType.GetPublicTypeSymbol();