aboutsummaryrefslogtreecommitdiff
path: root/compiler/src/dotty/tools/dotc/parsing/Utility.scala
diff options
context:
space:
mode:
authorGuillaume Martres <smarter@ubuntu.com>2017-03-05 20:51:40 +0900
committerGuillaume Martres <smarter@ubuntu.com>2017-03-07 18:54:13 +0100
commitad4a6f4251d9b664029dd37cf252d85531ac694c (patch)
tree8b7f0fcc5a14252afe7b09cba018cd14bc98f019 /compiler/src/dotty/tools/dotc/parsing/Utility.scala
parent7845875306732fba3e9db25c9b11dde7df31f77a (diff)
downloaddotty-ad4a6f4251d9b664029dd37cf252d85531ac694c.tar.gz
dotty-ad4a6f4251d9b664029dd37cf252d85531ac694c.tar.bz2
dotty-ad4a6f4251d9b664029dd37cf252d85531ac694c.zip
Use Chars object from dotty instead of scala.reflect
Diffstat (limited to 'compiler/src/dotty/tools/dotc/parsing/Utility.scala')
-rw-r--r--compiler/src/dotty/tools/dotc/parsing/Utility.scala5
1 files changed, 3 insertions, 2 deletions
diff --git a/compiler/src/dotty/tools/dotc/parsing/Utility.scala b/compiler/src/dotty/tools/dotc/parsing/Utility.scala
index f522492f8..8af594d68 100644
--- a/compiler/src/dotty/tools/dotc/parsing/Utility.scala
+++ b/compiler/src/dotty/tools/dotc/parsing/Utility.scala
@@ -1,4 +1,5 @@
-package dotty.tools.dotc.parsing
+package dotty.tools.dotc
+package parsing
import scala.collection.mutable
@@ -10,7 +11,7 @@ import scala.collection.mutable
* @author Burak Emir
*/
object Utility {
- import scala.reflect.internal.Chars.SU
+ import util.Chars.SU
private val unescMap = Map(
"lt" -> '<',