Add qldoc for `getTermInIntersection`

This commit is contained in:
Chris Smowton 2022-05-10 14:42:38 +01:00
Родитель 3129c3dd69
Коммит c0fbd03133
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -668,6 +668,9 @@ private TypeSetTerm getIntersection(TypeSetTerm term1, TypeSetTerm term2) {
if term1.hasTilde() then result = term2 else result = term1
}
/**
* Gets a term in the intersection of type-set literals `a` and `b`.
*/
TypeSetTerm getTermInIntersection(TypeSetLiteralType a, TypeSetLiteralType b) {
result = getIntersection(a.getATerm(), b.getATerm())
}