Files
PURErat-crack-scode/decompiled/Libraries/microsoft.codeanalysis.csharp/Microsoft.CodeAnalysis.CSharp.Syntax/NullableContextState.cs
T

26 lines
496 B
C#
Raw Normal View History

2026-08-27 10:56:38 -06:00
namespace Microsoft.CodeAnalysis.CSharp.Syntax;
internal readonly struct NullableContextState
{
internal enum State : byte
{
Unknown,
Disabled,
Enabled,
ExplicitlyRestored
}
internal int Position { get; }
internal State WarningsState { get; }
internal State AnnotationsState { get; }
internal NullableContextState(int position, State warningsState, State annotationsState)
{
Position = position;
WarningsState = warningsState;
AnnotationsState = annotationsState;
}
}