Skip to content

Commit 788d015

Browse files
committed
More fixes
1 parent aab031a commit 788d015

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

library/src/scala/quoted/Toolbox.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ object Toolbox {
3333
}
3434

3535
/** Setting of the Toolbox instance. */
36-
case class Settings private (val outDir: Option[String], val showRawTree: Boolean, val compilerArgs: List[String], val color: Boolean)
36+
case class Settings private (outDir: Option[String], showRawTree: Boolean, compilerArgs: List[String], color: Boolean)
3737

3838
object Settings {
3939

library/src/scala/tasty/reflect/Printers.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1367,7 +1367,7 @@ trait Printers
13671367
case tpe @ Type.SymRef(IsClassSymbol(sym), _) if sym.name.endsWith("$") =>
13681368
printType(tpe)
13691369
this += ".type"
1370-
case tpe @ Type.SymRef(sym, _) if !IsTypeSymbol.unapply(sym).nonEmpty =>
1370+
case tpe @ Type.SymRef(sym, _) if sym.isTerm =>
13711371
printType(tpe)
13721372
this += ".type"
13731373
case tpe => printType(tpe)

0 commit comments

Comments
 (0)