summaryrefslogtreecommitdiff
path: root/test/files/run/inline-ex-handlers.scala
Commit message (Collapse)AuthorAgeFilesLines
* SI-7622 Clean Up Phase AssemblySom Snytt2013-08-211-2/+2
| | | | | | | | Let optimiser components and continuations plugin opt-out when required flags are not set. Wasted time on a whitespace error in check file, so let --debug dump the processed check file and its diff.
* PluginComponent contributes description to -Xshow-phases.Som Snytt2012-12-181-1/+1
| | | | | | | | | | | | | | | In Global, SubComponent is called a phase descriptor, but it doesn't actually have a description. (Phase itself does.) This fix adds a description to PluginComponent so that plugins can describe what they do in -Xshow-phases. Elliptical descriptions Exploded archives Plugged-in partest Roundup at the Little h!
* Created infrastructure for testing icode + sett...Paul Phillips2011-08-221-0/+329
Created infrastructure for testing icode + settings/partest yak shaving. See enclosed test files/run/inline-ex-handlers.scala. To compare optimized and unoptimized icode after a given phase, all you need in a partest source file is this: import scala.tools.partest.IcodeTest object Test extends IcodeTest { override def printIcodeAfterPhase = "inlineExceptionHandlers" } Other things can be done, see IcodeTest.scala. Review by ureche.