14 references to Type
Microsoft.CodeAnalysis.CSharp (14)
Binder\Binder_Deconstruct.cs (2)
379Debug.Assert((object?)pending.Type == null); 412if ((object?)pending.Type == null)
BoundTree\BoundDiscardExpression.cs (3)
14Debug.Assert(Type is null && type.HasType); 32Debug.Assert(this.Type is { }); 33return new DiscardSymbol(TypeWithAnnotations.Create(this.Type, this.TopLevelNullability.Annotation.ToInternalAnnotation()));
BoundTree\Formatting.cs (1)
132get { return (object?)this.Type ?? "_"; }
FlowAnalysis\NullableWalker.cs (2)
11767var result = TypeWithAnnotations.Create(node.Type, node.IsInferred ? NullableAnnotation.Annotated : node.NullableAnnotation); 11768var rValueType = TypeWithState.ForType(node.Type);
Generated\BoundNodes.xml.Generated.cs (3)
8548if (nullableAnnotation != this.NullableAnnotation || isInferred != this.IsInferred || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 12159TypeSymbol? type = this.VisitType(node.Type); 17045new TreeDumperNode("type", node.Type, null),
Lowering\SyntheticBoundNodeFactory.cs (3)
1776Debug.Assert(node.Type is { }); 1777temp = new SynthesizedLocal(this.CurrentFunction, TypeWithAnnotations.Create(node.Type), SynthesizedLocalKind.LoweringTemp); 1779return new BoundLocal(node.Syntax, temp, constantValueOpt: null, type: node.Type) { WasCompilerGenerated = true };