11 references to TypeUnionValueSet
Microsoft.CodeAnalysis.CSharp (11)
Utilities\TypeUnionValueSet.cs (11)
77return new TypeUnionValueSet(typesInUnion, IsTrueNode.Instance, conversions);
84return new TypeUnionValueSet(typesInUnion, new IsTypeNode(type), conversions);
88return new TypeUnionValueSet(typesInUnion, IsFalseNode.Instance, conversions);
114return new TypeUnionValueSet(typesInUnion, IsNullNode.Instance, conversions);
119return new TypeUnionValueSet(typesInUnion, new NotNode(IsNullNode.Instance), conversions);
380return new TypeUnionValueSet(_typesInUnion, IsFalseNode.Instance, _conversions);
385return new TypeUnionValueSet(_typesInUnion, IsTrueNode.Instance, _conversions);
393return new TypeUnionValueSet(_typesInUnion, negated, _conversions);
420return new TypeUnionValueSet(_typesInUnion, new AndNode(_root, other._root), _conversions);
447return new TypeUnionValueSet(_typesInUnion, new OrNode(_root, other._root), _conversions);
476var copy = new TypeUnionValueSet(_typesInUnion, _root, _conversions);