1 write to DeclaredType
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
8111
this.
DeclaredType
= declaredType;
9 references to DeclaredType
Microsoft.CodeAnalysis.CSharp (9)
Binder\DecisionDagBuilder.cs (1)
397
TypeSymbol? type = declaration.
DeclaredType
?.Type;
Binder\RefSafetyAnalysis.cs (1)
567
using var _ = new PatternInput(this, getDeclarationValEscape(node.
DeclaredType
, _patternInputValEscape));
FlowAnalysis\NullableWalker_Patterns.cs (1)
72
Visit(node.
DeclaredType
);
Generated\BoundNodes.xml.Generated.cs (5)
8123
if (declaredType != this.
DeclaredType
|| isVar != this.IsVar || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(variable, this.Variable) || variableAccess != this.VariableAccess || !TypeSymbol.Equals(inputType, this.InputType, TypeCompareKind.ConsiderEverything) || !TypeSymbol.Equals(narrowedType, this.NarrowedType, TypeCompareKind.ConsiderEverything))
10689
this.Visit(node.
DeclaredType
);
12068
BoundTypeExpression declaredType = (BoundTypeExpression)this.Visit(node.
DeclaredType
);
14730
BoundTypeExpression declaredType = (BoundTypeExpression)this.Visit(node.
DeclaredType
);
16925
new TreeDumperNode("declaredType", null, new TreeDumperNode[] { Visit(node.
DeclaredType
, null) }),
Operations\CSharpOperationFactory.cs (1)
2547
ITypeSymbol? matchedType = acceptsNull ? null : boundDeclarationPattern.
DeclaredType
.GetPublicTypeSymbol();