Create a type selector from a given source and refinement. For example, int|null might be the source with int as the refinement. @param source @param refinement @return
(Type lhs, Type rhs)
| 45 | * @return |
| 46 | */ |
| 47 | public static Type.Selector create(Type lhs, Type rhs) { |
| 48 | return create(lhs,rhs,null); |
| 49 | } |
| 50 | |
| 51 | private static Type.Selector create(Type t1, Type t2, BinaryRelation<Type> cache) { |
| 52 |
no test coverage detected