1 write to DeclaredType
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
8111this.DeclaredType = declaredType;
9 references to DeclaredType
Microsoft.CodeAnalysis.CSharp (9)
Binder\DecisionDagBuilder.cs (1)
397TypeSymbol? type = declaration.DeclaredType?.Type;
Binder\RefSafetyAnalysis.cs (1)
567using var _ = new PatternInput(this, getDeclarationValEscape(node.DeclaredType, _patternInputValEscape));
FlowAnalysis\NullableWalker_Patterns.cs (1)
72Visit(node.DeclaredType);
Generated\BoundNodes.xml.Generated.cs (5)
8123if (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)) 10689this.Visit(node.DeclaredType); 12068BoundTypeExpression declaredType = (BoundTypeExpression)this.Visit(node.DeclaredType); 14730BoundTypeExpression declaredType = (BoundTypeExpression)this.Visit(node.DeclaredType); 16925new TreeDumperNode("declaredType", null, new TreeDumperNode[] { Visit(node.DeclaredType, null) }),
Operations\CSharpOperationFactory.cs (1)
2547ITypeSymbol? matchedType = acceptsNull ? null : boundDeclarationPattern.DeclaredType.GetPublicTypeSymbol();