File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
src/dotty/tools/dotc/repl Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ class InterpreterLoop(
93
93
*/
94
94
def firstLine (): String = {
95
95
val futLine = Future (in.readLine(prompt))
96
- // bindSettings() // TODO enable
96
+ // bindSettings() // TODO adapt to dotty and re- enable (?)
97
97
Await .result(futLine, Duration .Inf )
98
98
}
99
99
Original file line number Diff line number Diff line change @@ -13,11 +13,13 @@ package repl
13
13
*
14
14
* There are a number of TODOs:
15
15
*
16
- * - re-enable bindings (urgent, easy)
17
- * - re-enable jline support (urgent, easy)
16
+ * - re-enable jline support (urgent, easy, see TODO in InteractiveReader.scala )
17
+ * - make a doti command (urgent, easy)
18
18
* - create or port REPL tests (urgent, intermediate)
19
+ * - make interpreter run a pseudo line on startup to pre-load compiler (somewhat urgent, easy)
19
20
* - copy improvements of current Scala REPL wrt to this version
20
21
* (somewhat urgent, intermediate)
22
+ * - re-enable bindSettings (not urgent, easy, see TODO in InterpreterLoop.scala)
21
23
* - make string generation more functional (not urgent, easy)
22
24
* - better handling of ^C (not urgent, intermediate)
23
25
* - syntax highlighting (not urgent, intermediate)
You can’t perform that action at this time.
0 commit comments