2 writes to DeclarationKind
Microsoft.CodeAnalysis.CSharp (2)
Generated\BoundNodes.xml.Generated.cs (2)
4536
this.
DeclarationKind
= declarationKind;
4549
this.
DeclarationKind
= declarationKind;
15 references to DeclarationKind
Microsoft.CodeAnalysis.CSharp (15)
Binder\Binder.ValueChecks.cs (2)
2694
if (argument is BoundDeconstructValuePlaceholder { VariableSymbol: not null } or BoundLocal {
DeclarationKind
: not BoundLocalDeclarationKind.None })
3102
BoundLocal {
DeclarationKind
: not BoundLocalDeclarationKind.None } l => l.LocalSymbol,
Binder\Binder_Deconstruct.cs (1)
642
BoundLocal {
DeclarationKind
: BoundLocalDeclarationKind.WithExplicitType or BoundLocalDeclarationKind.WithInferredType, LocalSymbol: var symbol } => symbol,
BoundTree\BoundExpression.cs (1)
310
return this.Update(localSymbol, this.
DeclarationKind
, constantValueOpt, this.IsNullableUnknown, type);
FlowAnalysis\NullableWalker.cs (3)
8093
if (argument is BoundLocal local && local.
DeclarationKind
== BoundLocalDeclarationKind.WithInferredType)
8590
if (argument is BoundLocal {
DeclarationKind
: BoundLocalDeclarationKind.WithInferredType } || IsTargetTypedExpression(argument))
10943
if (variable.Expression is BoundLocal {
DeclarationKind
: BoundLocalDeclarationKind.WithInferredType } local)
FlowAnalysis\NullableWalker_Patterns.cs (1)
686
var inferredType = value.ToTypeWithAnnotations(compilation, asAnnotatedType: boundLocal.
DeclarationKind
== BoundLocalDeclarationKind.WithInferredType);
FlowAnalysis\VariablesDeclaredWalker.cs (1)
264
if (IsInside && node.
DeclarationKind
!= BoundLocalDeclarationKind.None)
Generated\BoundNodes.xml.Generated.cs (5)
4565
if (!Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(localSymbol, this.LocalSymbol) || declarationKind != this.
DeclarationKind
|| constantValueOpt != this.ConstantValueOpt || isNullableUnknown != this.IsNullableUnknown || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
11621
return node.Update(localSymbol, node.
DeclarationKind
, node.ConstantValueOpt, node.IsNullableUnknown, type);
13760
updatedNode = node.Update(localSymbol, node.
DeclarationKind
, node.ConstantValueOpt, node.IsNullableUnknown, infoAndType.Type!);
13765
updatedNode = node.Update(localSymbol, node.
DeclarationKind
, node.ConstantValueOpt, node.IsNullableUnknown, node.Type);
16191
new TreeDumperNode("declarationKind", node.
DeclarationKind
, null),
Operations\CSharpOperationFactory.cs (1)
555
bool isDeclaration = boundLocal.
DeclarationKind
!= BoundLocalDeclarationKind.None;