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