2 instantiations of AndNode
Microsoft.CodeAnalysis.CSharp (2)
Utilities\TypeUnionValueSet.cs (2)
378return new TypeUnionValueSet(_typesInUnion, new AndNode(_root, other._root), _conversions); 426return 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)
217case AndNode andNode: 526return "(" + Left.ToString() + (this is AndNode ? " & " : " | ") + Right.ToString() + ")";