Skip to content

Commit fa4cb01

Browse files
committed
Remove LambdaType
1 parent 0480dec commit fa4cb01

File tree

2 files changed

+209
-343
lines changed

2 files changed

+209
-343
lines changed

compiler/src/dotty/tools/dotc/semanticdb/PPrint.scala

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -197,10 +197,6 @@ class SymbolInformationPrinter (symtab: PrinterSymtab):
197197
s"${pprint(caseType.key)} => ${pprint(caseType.body)}"
198198
}.mkString(", ")
199199
s"${pprint(scrutinee)} match { ${casesStr} }"
200-
case LambdaType(params, result) =>
201-
val paramsStr = params.infos.map(pprintDef).mkString("[", ", ", "]")
202-
val resultStr = pprint(result)
203-
s"${paramsStr} =>> ${resultStr}"
204200
case x =>
205201
"<?>"
206202

0 commit comments

Comments
 (0)