scala-dev
scala-dev copied to clipboard
check / test inlining of list operations
trafficstars
with the latest heuristics (not yet merged):
- when compiling all of the library,
mapConservehas itsloopmethod inlined, butdropWhilehas a call toloop$3 - when only compiling (re-compiling)
List.scala, both methods have theirloopmethods 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.