summaryrefslogtreecommitdiff
path: root/test/files/pos/t5862.scala
Commit message (Collapse)AuthorAgeFilesLines
* Reduce time spent in lubsMartin Odersky2012-06-081-0/+38
Reduce time spent in lubs by making depth more adaptive. It now takes into account separately the depth of the lub types and the maximal depth of theior base type sequences. It cuts depth more aggressively if it is the base types instead of the types themselves that grow deep. The old truncation behavior is retained under option -Xfull-lubs Another change is that we now track depth more precisely, which should also help or at least allow better statistics. Also added statistics that measure #lubs and time spent in them.