1 write to DeclaredType
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
8606
this.
DeclaredType
= declaredType;
15 references to DeclaredType
Microsoft.CodeAnalysis.CSharp (15)
Binder\DecisionDagBuilder_CheckOrReachability.cs (1)
1058
return typePattern1.Update(typePattern1.
DeclaredType
, typePattern1.IsExplicitNotNullTest, unionMatchingMode: UnionMatchingMode.None, inputType, typePattern1.NarrowedType);
Binder\DecisionDagBuilder.cs (1)
619
TypeSymbol type = typePattern.
DeclaredType
.Type;
Binder\UnionMatchingRewriter.cs (3)
176
node.Update(node.
DeclaredType
, node.IsExplicitNotNullTest, unionMatchingMode: UnionMatchingMode.None, inputType: node.InputType, narrowedType: node.NarrowedType),
177
exclusiveValuePattern: node.Update(node.
DeclaredType
, node.IsExplicitNotNullTest, unionMatchingMode: UnionMatchingMode.None, inputType: ObjectType, narrowedType: node.NarrowedType));
488
toNegate = makeTypePattern(typePattern.
DeclaredType
, typePattern.InputType);
BoundTree\BoundNode_Source.cs (1)
397
append(typePattern.
DeclaredType
.Type.ToString());
BoundTree\BoundPatternWithUnionMatching.cs (2)
26
Debug.Assert(p1.
DeclaredType
== (object)((BoundTypePattern)ExclusiveValuePattern).
DeclaredType
);
BoundTree\BoundTypePattern.cs (1)
13
Debug.Assert(NarrowedType.Equals(
DeclaredType
.Type, TypeCompareKind.AllIgnoreOptions));
FlowAnalysis\NullableWalker_Patterns.cs (1)
98
Visit(node.
DeclaredType
);
Generated\BoundNodes.xml.Generated.cs (5)
8624
if (declaredType != this.
DeclaredType
|| isExplicitNotNullTest != this.IsExplicitNotNullTest || unionMatchingMode != this.UnionMatchingMode || !TypeSymbol.Equals(inputType, this.InputType, TypeCompareKind.ConsiderEverything) || !TypeSymbol.Equals(narrowedType, this.NarrowedType, TypeCompareKind.ConsiderEverything))
11038
this.Visit(node.
DeclaredType
);
12616
BoundTypeExpression declaredType = (BoundTypeExpression)this.Visit(node.
DeclaredType
);
15316
BoundTypeExpression declaredType = (BoundTypeExpression)this.Visit(node.
DeclaredType
);
17580
new TreeDumperNode("declaredType", null, new TreeDumperNode[] { Visit(node.
DeclaredType
, null) }),