File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
compiler/src/dotty/tools/dotc/core Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -45,10 +45,16 @@ abstract class Constraint extends Showable {
45
45
/** The parameters that are known to be greater wrt <: than `param` */
46
46
def upper (param : TypeParamRef ): List [TypeParamRef ]
47
47
48
- /** `lower`, except that `minLower.forall(tpr => !minLower.exists(_ <:< tpr))` */
48
+ /** The lower dominator set.
49
+ *
50
+ * This is like `lower`, except that each parameter returned is no smaller than every other returned parameter.
51
+ */
49
52
def minLower (param : TypeParamRef ): List [TypeParamRef ]
50
53
51
- /** `upper`, except that `minUpper.forall(tpr => !minUpper.exists(tpr <:< _))` */
54
+ /** The upper dominator set.
55
+ *
56
+ * This is like `upper`, except that each parameter returned is no greater than every other returned parameter.
57
+ */
52
58
def minUpper (param : TypeParamRef ): List [TypeParamRef ]
53
59
54
60
/** lower(param) \ lower(butNot) */
You can’t perform that action at this time.
0 commit comments