aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools
diff options
context:
space:
mode:
authorGuillaume Martres <smarter@ubuntu.com>2016-10-29 15:33:59 +0200
committerGuillaume Martres <smarter@ubuntu.com>2016-11-22 01:35:07 +0100
commitf4d46f3457a6f63bf83c6a0f2edac73b465ac929 (patch)
tree4cd6b47dcd107fd80bc39e9c8a9e1a8d84898973 /src/dotty/tools
parent8654ce8c6347933996f274088c558f2b863cf094 (diff)
downloaddotty-f4d46f3457a6f63bf83c6a0f2edac73b465ac929.tar.gz
dotty-f4d46f3457a6f63bf83c6a0f2edac73b465ac929.tar.bz2
dotty-f4d46f3457a6f63bf83c6a0f2edac73b465ac929.zip
TastyPrinter: fix RefinedType printing
Diffstat (limited to 'src/dotty/tools')
-rw-r--r--src/dotty/tools/dotc/core/tasty/TastyPrinter.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/core/tasty/TastyPrinter.scala b/src/dotty/tools/dotc/core/tasty/TastyPrinter.scala
index 7fcd7c29e..0dc8d8fea 100644
--- a/src/dotty/tools/dotc/core/tasty/TastyPrinter.scala
+++ b/src/dotty/tools/dotc/core/tasty/TastyPrinter.scala
@@ -69,7 +69,7 @@ class TastyPrinter(bytes: Array[Byte])(implicit ctx: Context) {
case VALDEF | DEFDEF | TYPEDEF | TYPEPARAM | PARAM | NAMEDARG | BIND =>
printName(); printTrees()
case REFINEDtype =>
- printTree(); printName(); printTrees()
+ printName(); printTree(); printTrees()
case RETURN =>
printNat(); printTrees()
case METHODtype | POLYtype =>