aboutsummaryrefslogtreecommitdiff
path: root/compiler/src/dotty/tools/dotc/repl/CompilingInterpreter.scala
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/src/dotty/tools/dotc/repl/CompilingInterpreter.scala')
-rw-r--r--compiler/src/dotty/tools/dotc/repl/CompilingInterpreter.scala13
1 files changed, 1 insertions, 12 deletions
diff --git a/compiler/src/dotty/tools/dotc/repl/CompilingInterpreter.scala b/compiler/src/dotty/tools/dotc/repl/CompilingInterpreter.scala
index d193148ef..e0fda8258 100644
--- a/compiler/src/dotty/tools/dotc/repl/CompilingInterpreter.scala
+++ b/compiler/src/dotty/tools/dotc/repl/CompilingInterpreter.scala
@@ -704,18 +704,7 @@ class CompilingInterpreter(
| if ($fullPath.asInstanceOf[AnyRef] != null) {
| (if ($fullPath.toString().contains('\\n')) "\\n" else "") + {
| import dotty.Show._
- | if ("$varType".matches(".*Map\\\\[.*,.*\\\\]")) {
- | import dotty.Show.Map._
- | $fullPath.show /*toString()*/ + "\\n"
- | } else if ("$varType".matches(".*List\\\\[.*\\\\]")) {
- | import dotty.Show.List._
- | $fullPath.show /*toString()*/ + "\\n"
- | } else if ("$varType".matches(".*Option\\\\[.*\\\\]")) {
- | import dotty.Show.Option._
- | $fullPath.show /*toString()*/ + "\\n"
- | } else {
- | $fullPath.show /*toString()*/ + "\\n"
- | }
+ | $fullPath.show /*toString()*/ + "\\n"
| }
| } else {
| "null\\n"