summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/cmd/FromString.scala
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2012-07-20 12:55:27 +0200
committerEugene Burmako <xeno.by@gmail.com>2012-07-20 12:55:27 +0200
commite5161f01111c88de4f890c7541a6ff5e7be58916 (patch)
treedb1ed298a7a4fed5d4a3fafadc114b0ae6da35d7 /src/compiler/scala/tools/cmd/FromString.scala
parent0b1667b85675ef321587252c12878fc1b52888dd (diff)
downloadscala-e5161f01111c88de4f890c7541a6ff5e7be58916.tar.gz
scala-e5161f01111c88de4f890c7541a6ff5e7be58916.tar.bz2
scala-e5161f01111c88de4f890c7541a6ff5e7be58916.zip
evicts calls to reify from our codebase
Until reflection design is stabilized (i.e. 2.10.0 final is released), it's a good idea to refrain from using reify in our codebase (either directly in quasiquotes, or indirectly via materialized type tags). This increases the percentage of changes to reflection that don't require rebuilding the starr. The change to build.xml will expose reifications going on during our build (by printing out their results to the console, so that they bug everyone), making it easier to spot and fix them.
Diffstat (limited to 'src/compiler/scala/tools/cmd/FromString.scala')
-rw-r--r--src/compiler/scala/tools/cmd/FromString.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/cmd/FromString.scala b/src/compiler/scala/tools/cmd/FromString.scala
index 29f1baaa0c..415940b3fd 100644
--- a/src/compiler/scala/tools/cmd/FromString.scala
+++ b/src/compiler/scala/tools/cmd/FromString.scala
@@ -8,7 +8,7 @@ package cmd
import nsc.io.{ Path, File, Directory }
import scala.reflect.runtime.{universe => ru}
-import scala.tools.reflect.StdTags._
+import scala.tools.reflect.StdRuntimeTags._
/** A general mechanism for defining how a command line argument
* (always a String) is transformed into an arbitrary type. A few