1 write to SourceType
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
2927this.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)
11627VisitTypeExpression(node.SourceType);
Generated\BoundNodes.xml.Generated.cs (5)
2940if (sourceType != this.SourceType || constantValueOpt != this.ConstantValueOpt || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 10073this.Visit(node.SourceType); 11271BoundTypeExpression sourceType = (BoundTypeExpression)this.Visit(node.SourceType); 13287BoundTypeExpression sourceType = (BoundTypeExpression)this.Visit(node.SourceType); 15653new TreeDumperNode("sourceType", null, new TreeDumperNode[] { Visit(node.SourceType, null) }),
Operations\CSharpOperationFactory.cs (1)
1185ITypeSymbol? typeOperand = boundSizeOfOperator.SourceType.GetPublicTypeSymbol();