summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/reflect/FastTrack.scala
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2014-09-11 11:27:49 +0200
committerEugene Burmako <xeno.by@gmail.com>2014-09-11 11:27:49 +0200
commit9ba986e61151cb370ba519f568042776c9f303df (patch)
tree282dbe114f6f26882c16a5421710c73c930bf1ba /src/compiler/scala/tools/reflect/FastTrack.scala
parent7c8eaef41cacaa34cd691fb81e58d2d80428c661 (diff)
downloadscala-9ba986e61151cb370ba519f568042776c9f303df.tar.gz
scala-9ba986e61151cb370ba519f568042776c9f303df.tar.bz2
scala-9ba986e61151cb370ba519f568042776c9f303df.zip
moves the impl of quasiquotes to scala.reflect
This brings consistency with scala.reflect.reify and scala.reflect.macros already existing in scala-compiler. To the contrast, scala.tools.reflect, the previous home of quasiquotes, is a grab bag of various stuff without any central theme.
Diffstat (limited to 'src/compiler/scala/tools/reflect/FastTrack.scala')
-rw-r--r--src/compiler/scala/tools/reflect/FastTrack.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/reflect/FastTrack.scala b/src/compiler/scala/tools/reflect/FastTrack.scala
index 64cf3d0847..8fed53c89f 100644
--- a/src/compiler/scala/tools/reflect/FastTrack.scala
+++ b/src/compiler/scala/tools/reflect/FastTrack.scala
@@ -5,7 +5,7 @@ import scala.reflect.reify.Taggers
import scala.tools.nsc.typechecker.{ Analyzer, Macros }
import scala.reflect.runtime.Macros.currentMirror
import scala.reflect.api.Universe
-import scala.tools.reflect.quasiquotes.{ Quasiquotes => QuasiquoteImpls }
+import scala.reflect.quasiquotes.{ Quasiquotes => QuasiquoteImpls }
/** Optimizes system macro expansions by hardwiring them directly to their implementations
* bypassing standard reflective load and invoke to avoid the overhead of Java/Scala reflection.