6 references to None
Microsoft.CodeAnalysis.CSharp (6)
Binder\Binder.ValueChecks.cs (2)
2389if (argument is BoundDeconstructValuePlaceholder { VariableSymbol: not null } or BoundLocal { DeclarationKind: not BoundLocalDeclarationKind.None }) 2767BoundLocal { DeclarationKind: not BoundLocalDeclarationKind.None } l => l.LocalSymbol,
Binder\Binder_Expressions.cs (1)
2069return new BoundLocal(node, localSymbol, BoundLocalDeclarationKind.None, constantValueOpt: constantValueOpt, isNullableUnknown: isNullableUnknown, type: type, hasErrors: isError);
BoundTree\BoundExpression.cs (1)
304: this(syntax, localSymbol, BoundLocalDeclarationKind.None, constantValueOpt, false, type, hasErrors)
FlowAnalysis\VariablesDeclaredWalker.cs (1)
179if (IsInside && node.DeclarationKind != BoundLocalDeclarationKind.None)
Operations\CSharpOperationFactory.cs (1)
555bool isDeclaration = boundLocal.DeclarationKind != BoundLocalDeclarationKind.None;