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