Open
Description
with the latest heuristics (not yet merged):
- when compiling all of the library,
mapConserve
has itsloop
method inlined, butdropWhile
has a call toloop$3
- when only compiling (re-compiling)
List.scala
, both methods have theirloop
methods inlined
this is relevant because dropWhile
cannot be inlined into other classfiles if it contains a call to loop$3
, that method is not public.