With Scala 2.9:
~/code/scala scala -Xprint:typer -e "1 to 4"
[[syntax trees at end of typer]]// Scala source: scalacmd4469348504265784881.scala
package <empty> {
final object Main extends java.lang.Object with ScalaObject {
def this(): object Main = {
Main.super.this();
()
};
def main(argv: Array[String]): Unit = {
val args: Array[String] = argv;
{
final class $anon extends scala.AnyRef {
def this(): anonymous class $anon = {
$anon.super.this();
()
};
scala.this.Predef.intWrapper(1).to(4)
};
{
new $anon();
()
}
}
}
}
}
With Scala 2.10, assuming that SIP-16 is accepted:
scala> import reflect.mirror
import reflect.mirror
scala> val tree = mirror.reify(1 to 4).tree
tree: reflect.mirror.Tree = scala.this.Predef.intWrapper(1).to(4)
scala> mirror.showRaw(tree)
res7: String = Apply(Select(Apply(Select(Select(This(newTypeName("scala")), newTermName("Predef")), newTermName("intWrapper")), List(Literal(Constant(1)))), newTermName("to")), List(Literal(Constant(4))))
scala> mirror.show(tree)
res8: String = scala.this.Predef.intWrapper(1).to(4)