4 references to BoolValueSet
Microsoft.CodeAnalysis.CSharp (4)
Utilities\ValueSetFactory.BoolValueSet.cs (4)
17
internal static readonly BoolValueSet AllValues = new
BoolValueSet
(hasFalse: true, hasTrue: true);
18
internal static readonly BoolValueSet None = new
BoolValueSet
(hasFalse: false, hasTrue: false);
19
internal static readonly BoolValueSet OnlyTrue = new
BoolValueSet
(hasFalse: false, hasTrue: true);
20
internal static readonly BoolValueSet OnlyFalse = new
BoolValueSet
(hasFalse: true, hasTrue: false);