aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/com/jantuomi/tunkki/repl/Repl.java
Commit message (Collapse)AuthorAgeFilesLines
* Include calls now always return an object containing the library scopemasterjantuomi2016-08-301-3/+4
| | | | Resolves #15
* Make 'output' function utilize IO printLinejantuomi2016-08-051-2/+1
|
* Create IO utility class for input and output wrappersjantuomi2016-08-041-13/+3
|
* Refactor TunkkiError to subclassesJan Tuomi2016-08-021-2/+1
| | | | | Make TunkkiError abstract and create a subclass for all error types Change all TunkkiError throws to throw subclasses instead
* Add multiline input to REPLjantuomi2016-08-011-8/+27
| | | | | | | | Fix bug where REPL input is echoed back Fix bug where an exclamation point would cause a JLine event exception Input can now be continued on the next line with a '\' character at the end of the line. The character will be disregarded as whitespace in the parser. Resolves #13
* Implement enhanced REPL, relates to #13Jan Tuomi2016-07-311-0/+52
Add command history and welcome message