Skip to content

Commit a1eb867

Browse files
committed
Trivial refactor for reading
1 parent a5e029a commit a1eb867

File tree

5 files changed

+45
-44
lines changed

5 files changed

+45
-44
lines changed

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

+4-2
Original file line numberDiff line numberDiff line change
@@ -1365,8 +1365,10 @@ object Parsers {
13651365
def literal(negOffset: Int = in.offset, inPattern: Boolean = false, inTypeOrSingleton: Boolean = false, inStringInterpolation: Boolean = false): Tree = {
13661366
def literalOf(token: Token): Tree = {
13671367
val isNegated = negOffset < in.offset
1368-
def digits0 = in.removeNumberSeparators(in.strVal)
1369-
def digits = if (isNegated) "-" + digits0 else digits0
1368+
def digits =
1369+
val s = in.strVal
1370+
val digits0 = if s.indexOf('_') == -1 then s else s.replace("_", "")
1371+
if isNegated then "-" + digits0 else digits0
13701372
if !inTypeOrSingleton then
13711373
token match {
13721374
case INTLIT => return Number(digits, NumberKind.Whole(in.base))

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

+8-12
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,7 @@ object Scanners {
163163
strVal = litBuf.toString
164164
litBuf.clear()
165165

166-
@inline def isNumberSeparator(c: Char): Boolean = c == '_'
167-
168-
@inline def removeNumberSeparators(s: String): String = if (s.indexOf('_') == -1) s else s.replace("_", "")
166+
inline def isNumberSeparator(c: Char): Boolean = c == '_'
169167

170168
// disallow trailing numeric separator char, but continue lexing
171169
def checkNoTrailingSeparator(): Unit =
@@ -307,7 +305,7 @@ object Scanners {
307305
println(s"\nSTART SKIP AT ${sourcePos().line + 1}, $this in $currentRegion")
308306
var noProgress = 0
309307
// Defensive measure to ensure we always get out of the following while loop
310-
// even if source file is weirly formatted (i.e. we never reach EOF)
308+
// even if source file is weirdly formatted (i.e. we never reach EOF)
311309
var prevOffset = offset
312310
while !atStop && noProgress < 3 do
313311
nextToken()
@@ -789,20 +787,18 @@ object Scanners {
789787
then return true
790788
false
791789

792-
/** Is there a blank line between the current token and the last one?
793-
* A blank line consists only of characters <= ' '.
794-
* @pre afterLineEnd().
790+
/** Is there a blank line between the last token and the current one?
791+
* A blank line is a sequence of only characters <= ' ', between two LFs (or FFs).
795792
*/
796-
private def pastBlankLine: Boolean = {
793+
private def pastBlankLine: Boolean =
797794
val end = offset
798795
def recur(idx: Offset, isBlank: Boolean): Boolean =
799796
idx < end && {
800797
val ch = buf(idx)
801-
if (ch == LF || ch == FF) isBlank || recur(idx + 1, true)
802-
else recur(idx + 1, isBlank && ch <= ' ')
798+
if ch == LF || ch == FF then isBlank || recur(idx + 1, isBlank = true)
799+
else recur(idx + 1, isBlank = isBlank && ch <= ' ')
803800
}
804-
recur(lastOffset, false)
805-
}
801+
recur(lastOffset, isBlank = false)
806802

807803
import Character.{isHighSurrogate, isLowSurrogate, isUnicodeIdentifierPart, isUnicodeIdentifierStart, isValidCodePoint, toCodePoint}
808804

compiler/src/dotty/tools/repl/JLineTerminal.scala

+11-13
Original file line numberDiff line numberDiff line change
@@ -109,26 +109,26 @@ class JLineTerminal extends java.io.Closeable {
109109
def words = java.util.Collections.emptyList[String]
110110
}
111111

112-
def parse(input: String, cursor: Int, context: ParseContext): reader.ParsedLine = {
113-
def parsedLine(word: String, wordCursor: Int) =
114-
new ParsedLine(cursor, input, word, wordCursor)
112+
def parse(input: String, cursor: Int, context: ParseContext): reader.ParsedLine =
113+
def parsedLine(word: String, wordCursor: Int) = ParsedLine(cursor, input, word, wordCursor)
115114
// Used when no word is being completed
116115
def defaultParsedLine = parsedLine("", 0)
117116

118-
def incomplete(): Nothing = throw new EOFError(
117+
def incomplete(): Nothing = throw EOFError(
119118
// Using dummy values, not sure what they are used for
120119
/* line = */ -1,
121120
/* column = */ -1,
122121
/* message = */ "",
123122
/* missing = */ newLinePrompt)
124123

125124
case class TokenData(token: Token, start: Int, end: Int)
126-
def currentToken: TokenData /* | Null */ = {
125+
126+
def currentToken: TokenData /* | Null */ =
127127
val source = SourceFile.virtual("<completions>", input)
128128
val scanner = new Scanner(source)(using ctx.fresh.setReporter(Reporter.NoReporter))
129129
var lastBacktickErrorStart: Option[Int] = None
130130

131-
while (scanner.token != EOF) {
131+
while scanner.token != EOF do
132132
val start = scanner.offset
133133
val token = scanner.token
134134
scanner.nextToken()
@@ -138,15 +138,13 @@ class JLineTerminal extends java.io.Closeable {
138138
if (isCurrentToken)
139139
return TokenData(token, lastBacktickErrorStart.getOrElse(start), end)
140140

141-
142141
// we need to enclose the last backtick, which unclosed produces ERROR token
143142
if (token == ERROR && input(start) == '`') then
144143
lastBacktickErrorStart = Some(start)
145144
else
146145
lastBacktickErrorStart = None
147-
}
148146
null
149-
}
147+
end currentToken
150148

151149
def acceptLine = {
152150
val onLastLine = !input.substring(cursor).contains(System.lineSeparator)
@@ -162,9 +160,9 @@ class JLineTerminal extends java.io.Closeable {
162160
// complete we need to ensure that the :<partial-word> isn't split into
163161
// 2 tokens, but rather the entire thing is treated as the "word", in
164162
// order to insure the : is replaced in the completion.
165-
case ParseContext.COMPLETE if
166-
ParseResult.commands.exists(command => command._1.startsWith(input)) =>
167-
parsedLine(input, cursor)
163+
case ParseContext.COMPLETE
164+
if ParseResult.commands.exists(command => command._1.startsWith(input)) =>
165+
parsedLine(input, cursor)
168166

169167
case ParseContext.COMPLETE =>
170168
// Parse to find completions (typically after a Tab).
@@ -181,6 +179,6 @@ class JLineTerminal extends java.io.Closeable {
181179
case _ =>
182180
incomplete()
183181
}
184-
}
182+
end parse
185183
}
186184
}

compiler/src/dotty/tools/repl/ParseResult.scala

+15-17
Original file line numberDiff line numberDiff line change
@@ -211,28 +211,26 @@ object ParseResult {
211211
maybeIncomplete(sourceCode, maybeIncomplete = false)
212212

213213
private def maybeIncomplete(sourceCode: String, maybeIncomplete: Boolean)(using state: State): ParseResult =
214-
apply(SourceFile.virtual(str.REPL_SESSION_LINE + (state.objectIndex + 1), sourceCode, maybeIncomplete = maybeIncomplete))
214+
apply:
215+
SourceFile.virtual(str.REPL_SESSION_LINE + (state.objectIndex + 1), sourceCode, maybeIncomplete)
215216

216217
/** Check if the input is incomplete.
217218
*
218219
* This can be used in order to check if a newline can be inserted without
219220
* having to evaluate the expression.
220221
*/
221222
def isIncomplete(sourceCode: String)(using Context): Boolean =
222-
sourceCode match {
223-
case CommandExtract(_) | "" => false
224-
case _ => {
225-
val reporter = newStoreReporter
226-
val source = SourceFile.virtual("<incomplete-handler>", sourceCode, maybeIncomplete = true)
227-
val unit = CompilationUnit(source, mustExist = false)
228-
val localCtx = ctx.fresh
229-
.setCompilationUnit(unit)
230-
.setReporter(reporter)
231-
var needsMore = false
232-
reporter.withIncompleteHandler((_, _) => needsMore = true) {
233-
parseStats(using localCtx)
234-
}
235-
!reporter.hasErrors && needsMore
236-
}
237-
}
223+
sourceCode match
224+
case CommandExtract(_) | "" => false
225+
case _ =>
226+
val reporter = newStoreReporter
227+
val source = SourceFile.virtual("<incomplete-handler>", sourceCode, maybeIncomplete = true)
228+
val unit = CompilationUnit(source, mustExist = false)
229+
val localCtx = ctx.fresh
230+
.setCompilationUnit(unit)
231+
.setReporter(reporter)
232+
var needsMore = false
233+
reporter.withIncompleteHandler((_, _) => needsMore = true):
234+
parseStats(using localCtx)
235+
!reporter.hasErrors && needsMore
238236
}

compiler/test/dotty/tools/repl/ReplCompilerTests.scala

+7
Original file line numberDiff line numberDiff line change
@@ -511,6 +511,13 @@ class ReplCompilerTests extends ReplTest:
511511
val all = lines()
512512
assertTrue(hints.forall(hint => all.exists(_.contains(hint))))
513513

514+
@Test def `i22844 regression colon eol`: Unit = initially:
515+
run:
516+
"""|println:
517+
| "hello, world"
518+
|""".stripMargin // outdent, but this test does not exercise the bug
519+
assertEquals(List("hello, world"), lines())
520+
514521
object ReplCompilerTests:
515522

516523
private val pattern = Pattern.compile("\\r[\\n]?|\\n");

0 commit comments

Comments
 (0)