6 references to None
Microsoft.CodeAnalysis.CSharp (6)
Binder\Binder.ValueChecks.cs (2)
2389
if (argument is BoundDeconstructValuePlaceholder { VariableSymbol: not null } or BoundLocal { DeclarationKind: not BoundLocalDeclarationKind.
None
})
2767
BoundLocal { DeclarationKind: not BoundLocalDeclarationKind.
None
} l => l.LocalSymbol,
Binder\Binder_Expressions.cs (1)
2069
return 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)
179
if (IsInside && node.DeclarationKind != BoundLocalDeclarationKind.
None
)
Operations\CSharpOperationFactory.cs (1)
555
bool isDeclaration = boundLocal.DeclarationKind != BoundLocalDeclarationKind.
None
;