2 instantiations of AndNode
Microsoft.CodeAnalysis.CSharp (2)
Utilities\TypeUnionValueSet.cs (2)
420return new TypeUnionValueSet(_typesInUnion, new AndNode(_root, other._root), _conversions); 468return TryGetSampleType(new AndNode(_root, new NotNode(new IsTypeNode(type))), ref useSiteInfo) is null;
2 references to AndNode
Microsoft.CodeAnalysis.CSharp (2)
Utilities\TypeUnionValueSet.cs (2)
239case AndNode andNode: 568return "(" + Left.ToString() + (this is AndNode ? " & " : " | ") + Right.ToString() + ")";