1 write to DeclaredType
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
8621
this.
DeclaredType
= declaredType;
11 references to DeclaredType
Microsoft.CodeAnalysis.CSharp (11)
Binder\DecisionDagBuilder.cs (1)
611
TypeSymbol type = typePattern.
DeclaredType
.Type;
Binder\DecisionDagBuilder_CheckOrReachability.cs (1)
988
return typePattern1.Update(typePattern1.
DeclaredType
, typePattern1.IsExplicitNotNullTest, isUnionMatching: false, inputType, typePattern1.NarrowedType);
Binder\UnionMatchingRewriter.cs (1)
179
node.Update(node.
DeclaredType
, node.IsExplicitNotNullTest, isUnionMatching: false, inputType: ObjectType, narrowedType: node.NarrowedType));
BoundTree\BoundNode_Source.cs (1)
397
append(typePattern.
DeclaredType
.Type.ToString());
BoundTree\BoundTypePattern.cs (1)
13
Debug.Assert(NarrowedType.Equals(
DeclaredType
.Type, TypeCompareKind.AllIgnoreOptions));
FlowAnalysis\NullableWalker_Patterns.cs (1)
96
Visit(node.
DeclaredType
);
Generated\BoundNodes.xml.Generated.cs (5)
8639
if (declaredType != this.
DeclaredType
|| isExplicitNotNullTest != this.IsExplicitNotNullTest || isUnionMatching != this.IsUnionMatching || !TypeSymbol.Equals(inputType, this.InputType, TypeCompareKind.ConsiderEverything) || !TypeSymbol.Equals(narrowedType, this.NarrowedType, TypeCompareKind.ConsiderEverything))
11041
this.Visit(node.
DeclaredType
);
12614
BoundTypeExpression declaredType = (BoundTypeExpression)this.Visit(node.
DeclaredType
);
15307
BoundTypeExpression declaredType = (BoundTypeExpression)this.Visit(node.
DeclaredType
);
17568
new TreeDumperNode("declaredType", null, new TreeDumperNode[] { Visit(node.
DeclaredType
, null) }),