File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
compiler/src/dotty/tools/repl Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -76,6 +76,8 @@ final class JLineTerminal extends java.io.Closeable {
7676 val highlighted = SyntaxHighlighting .highlight(buffer)
7777 AttributedString .fromAnsi(highlighted)
7878 }
79+ def setErrorPattern (errorPattern : java.util.regex.Pattern ): Unit = {}
80+ def setErrorIndex (errorIndex : Int ): Unit = {}
7981 }
8082
8183 /** Provide multi-line editing support */
Original file line number Diff line number Diff line change @@ -493,9 +493,9 @@ object Build {
493493 libraryDependencies ++= Seq (
494494 " org.scala-lang.modules" % " scala-asm" % " 7.3.1-scala-1" , // used by the backend
495495 Dependencies .`compiler-interface`,
496- " org.jline" % " jline-reader" % " 3.9 .0" , // used by the REPL
497- " org.jline" % " jline-terminal" % " 3.9 .0" ,
498- " org.jline" % " jline-terminal-jna" % " 3.9 .0" // needed for Windows
496+ " org.jline" % " jline-reader" % " 3.15 .0" , // used by the REPL
497+ " org.jline" % " jline-terminal" % " 3.15 .0" ,
498+ " org.jline" % " jline-terminal-jna" % " 3.15 .0" // needed for Windows
499499 ),
500500
501501 // For convenience, change the baseDirectory when running the compiler
You can’t perform that action at this time.
0 commit comments