Skip to content

Commit

Permalink
test carriage print
Browse files Browse the repository at this point in the history
  • Loading branch information
simerplaha committed Nov 26, 2024
1 parent 6917084 commit e477e02
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/scala.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
distribution: temurin
java-version: 17
cache: sbt
- run: sbt "compile;test;doc;stage"
- run: sbt "project compiler-access" run

styling:
runs-on: ubuntu-latest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,7 @@ object SoftAST {
this
.copy(
code = code
.replaceAll("\r", "\\\\r") // Replace carriage with \\r
.replaceAll("\n", "\\\\n") // Replace newline with \\n
.replaceAll("\t", "\\\\t") // Replace tab with \\t
)
Expand Down

0 comments on commit e477e02

Please sign in to comment.