Skip to content

Commit

Permalink
Remove println left after debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
MateuszKubuszok committed Aug 3, 2023
1 parent 33a0498 commit d239264
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,7 @@ private[compiletime] trait ExprPromisesPlatform extends ExprPromises { this: Def
// Undoes the encoding of freshTermName so that generated value would not contain $1, $2, ... and weird
// dot-replacement - this makes generated fresh names more readable as it prevents e.g. typename$macro$1$2$3
private def toFieldName[A](expr: Expr[A]): String =
if expr.asTerm.toString.contains("$u002E") then {
println(expr.asTerm.toString)
}
expr.asTerm.toString // .replaceAll("\\$\\d+", "").replace("$u002E", ".")
expr.asTerm.toString
}

protected object PrependDefinitionsTo extends PrependDefinitionsToModule {
Expand Down

0 comments on commit d239264

Please sign in to comment.