Skip to content

Commit 81e057a

Browse files
authored
No outdent at eof (#22435)
Fixes #22332 The reference does not mention `<eof>`. `<outdent>` insertion does not require a particular next token, though some next tokens affect it (that is, leading infix or tokens that close an indentation region). It does require a "first token on the next line", for which we may take `<eof>` as the lack of a token. Of course, ordinary error messages say `eof`. The same text with an opening brace is unchanged: ``` 5 | | ^ | '}' expected, but eof found ```
1 parent 5fe57c2 commit 81e057a

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

compiler/src/dotty/tools/dotc/parsing/Scanners.scala

+1
Original file line numberDiff line numberDiff line change
@@ -617,6 +617,7 @@ object Scanners {
617617
if nextWidth < lastWidth then currentRegion = topLevelRegion(nextWidth)
618618
else if !isLeadingInfixOperator(nextWidth) && !statCtdTokens.contains(lastToken) && lastToken != INDENT then
619619
currentRegion match
620+
case _ if token == EOF => // no OUTDENT at EOF
620621
case r: Indented =>
621622
insert(OUTDENT, offset)
622623
handleNewIndentWidth(r.enclosing, ir =>

tests/pos/i22332.scala

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
2+
object Foo:
3+
val foo = 42
4+
// one space
5+

0 commit comments

Comments
 (0)