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 {
76
76
val highlighted = SyntaxHighlighting .highlight(buffer)
77
77
AttributedString .fromAnsi(highlighted)
78
78
}
79
+ def setErrorPattern (errorPattern : java.util.regex.Pattern ): Unit = {}
80
+ def setErrorIndex (errorIndex : Int ): Unit = {}
79
81
}
80
82
81
83
/** Provide multi-line editing support */
Original file line number Diff line number Diff line change @@ -493,9 +493,9 @@ object Build {
493
493
libraryDependencies ++= Seq (
494
494
" org.scala-lang.modules" % " scala-asm" % " 7.3.1-scala-1" , // used by the backend
495
495
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
499
499
),
500
500
501
501
// For convenience, change the baseDirectory when running the compiler
You can’t perform that action at this time.
0 commit comments