Skip to content

Commit

Permalink
Fix postfixOps usages in build
Browse files Browse the repository at this point in the history
  • Loading branch information
odersky committed Mar 12, 2022
1 parent 740ac67 commit 8c92ee1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions compiler/test/dotty/tools/repl/TabcompleteTests.scala
Expand Up @@ -176,7 +176,7 @@ class TabcompleteTests extends ReplTest {
| case dot_product_*
| case __system
|
|Foo."""stripMargin))
|Foo.""".stripMargin))
}


Expand All @@ -192,7 +192,7 @@ class TabcompleteTests extends ReplTest {
| case dot_product_*
| case __system
|
|Foo.`bac"""stripMargin))
|Foo.`bac""".stripMargin))
}

@Test def commands = initially {
Expand Down
Expand Up @@ -461,7 +461,7 @@ final class Parser(
stack.length > 0 && char != endOfText
}) do {}

list mkString
list.mkString
}

def getInline(isInlineEnd: => Boolean, textTransform: String => String = identity): Inline = {
Expand Down

0 comments on commit 8c92ee1

Please sign in to comment.