Skip to content

Commit cc76b44

Browse files
committed
upgrade dependencies
improve gitignore for gradle enable Scala 2.13.16 override showFormatted to use format with break
1 parent 4b05a29 commit cc76b44

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,11 @@ project/plugins/project/
4949
# the Singapore stack
5050
**/.ammonite/
5151

52+
# Compiler
5253
# Compiler
5354
output
54-
*/target/
55+
**/out
56+
**/target/
5557

5658
#Misc
5759
temp

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ allprojects {
142142

143143
val scalaTestV = "3.2.11"
144144
testFixturesApi("org.scalatest:scalatest_${vs.scalaBinaryV}:${scalaTestV}")
145-
testImplementation("org.junit.jupiter:junit-jupiter:5.11.2")
145+
testImplementation("org.junit.jupiter:junit-jupiter:5.11.4")
146146

147147
testRuntimeOnly("co.helmethair:scalatest-junit-runner:0.2.0")
148148
}

core/src/main/scala-2.13.7+/latest/splain/SplainFormattingExtension.scala

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -899,4 +899,6 @@ trait SplainFormattingExtension extends typechecker.splain.SplainFormatting with
899899
override def showFormattedLImpl(ft: Formatted, break: Boolean): TypeRepr = {
900900
ShowFormattedHelper(break)(ft)
901901
}
902+
903+
override def showFormatted(tpe: Formatted): String = showFormattedL(tpe, break = true).joinLines
902904
}

0 commit comments

Comments
 (0)