@@ -109,26 +109,26 @@ class JLineTerminal extends java.io.Closeable {
109
109
def words = java.util.Collections .emptyList[String ]
110
110
}
111
111
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)
115
114
// Used when no word is being completed
116
115
def defaultParsedLine = parsedLine(" " , 0 )
117
116
118
- def incomplete (): Nothing = throw new EOFError (
117
+ def incomplete (): Nothing = throw EOFError (
119
118
// Using dummy values, not sure what they are used for
120
119
/* line = */ - 1 ,
121
120
/* column = */ - 1 ,
122
121
/* message = */ " " ,
123
122
/* missing = */ newLinePrompt)
124
123
125
124
case class TokenData (token : Token , start : Int , end : Int )
126
- def currentToken : TokenData /* | Null */ = {
125
+
126
+ def currentToken : TokenData /* | Null */ =
127
127
val source = SourceFile .virtual(" <completions>" , input)
128
128
val scanner = new Scanner (source)(using ctx.fresh.setReporter(Reporter .NoReporter ))
129
129
var lastBacktickErrorStart : Option [Int ] = None
130
130
131
- while ( scanner.token != EOF ) {
131
+ while scanner.token != EOF do
132
132
val start = scanner.offset
133
133
val token = scanner.token
134
134
scanner.nextToken()
@@ -138,15 +138,13 @@ class JLineTerminal extends java.io.Closeable {
138
138
if (isCurrentToken)
139
139
return TokenData (token, lastBacktickErrorStart.getOrElse(start), end)
140
140
141
-
142
141
// we need to enclose the last backtick, which unclosed produces ERROR token
143
142
if (token == ERROR && input(start) == '`' ) then
144
143
lastBacktickErrorStart = Some (start)
145
144
else
146
145
lastBacktickErrorStart = None
147
- }
148
146
null
149
- }
147
+ end currentToken
150
148
151
149
def acceptLine = {
152
150
val onLastLine = ! input.substring(cursor).contains(System .lineSeparator)
@@ -162,9 +160,9 @@ class JLineTerminal extends java.io.Closeable {
162
160
// complete we need to ensure that the :<partial-word> isn't split into
163
161
// 2 tokens, but rather the entire thing is treated as the "word", in
164
162
// 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)
168
166
169
167
case ParseContext .COMPLETE =>
170
168
// Parse to find completions (typically after a Tab).
@@ -181,6 +179,6 @@ class JLineTerminal extends java.io.Closeable {
181
179
case _ =>
182
180
incomplete()
183
181
}
184
- }
182
+ end parse
185
183
}
186
184
}
0 commit comments