11 references to TypeUnionValueSet
Microsoft.CodeAnalysis.CSharp (11)
Utilities\TypeUnionValueSet.cs (11)
62return new TypeUnionValueSet(typesInUnion, IsTrueNode.Instance, conversions);
69return new TypeUnionValueSet(typesInUnion, new IsTypeNode(type), conversions);
73return new TypeUnionValueSet(typesInUnion, IsFalseNode.Instance, conversions);
100return new TypeUnionValueSet(typesInUnion, IsNullNode.Instance, conversions);
105return new TypeUnionValueSet(typesInUnion, new NotNode(IsNullNode.Instance), conversions);
295return new TypeUnionValueSet(_typesInUnion, IsFalseNode.Instance, _conversions);
300return new TypeUnionValueSet(_typesInUnion, IsTrueNode.Instance, _conversions);
308return new TypeUnionValueSet(_typesInUnion, negated, _conversions);
335return new TypeUnionValueSet(_typesInUnion, new AndNode(_root, other._root), _conversions);
362return new TypeUnionValueSet(_typesInUnion, new OrNode(_root, other._root), _conversions);
391var copy = new TypeUnionValueSet(_typesInUnion, _root, _conversions);