17 lines
295 B
C#
17 lines
295 B
C#
namespace Microsoft.CodeAnalysis.CSharp.Symbols;
|
|
|
|
internal enum LocalDeclarationKind : byte
|
|
{
|
|
None,
|
|
RegularVariable,
|
|
Constant,
|
|
FixedVariable,
|
|
UsingVariable,
|
|
CatchVariable,
|
|
ForEachIterationVariable,
|
|
PatternVariable,
|
|
DeconstructionVariable,
|
|
OutVariable,
|
|
DeclarationExpressionVariable
|
|
}
|