| Age | Commit message (Collapse) | Author |
|
Adds a number of things based off of some of the notes I've made over
time, plus a few papers I've read.
More details to come later, whenever I decide to actually get serious
about documentation and examples and the like
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Not sure what this was originally intended to be, but the
LineNumberReader class from java.io looks like it will work for what I
generally want
|
|
|
|
|
|
Rename several interfaces that were in the style IWhatever, which Java
doesn't use
|
|
|
|
|
|
|
|
Adds a basic pattern matching implementation. Not perfect, but pretty
good, considering what we have to work with
|
|
This is mostly just some cleanup of the various implementation types,
but it also adds a 'marker' interface for decrees, IDecree
|
|
|
|
|
|
|
|
Cleanup somethings related to token splitters
|
|
In case anyone wants it, SimpleKeyedButton now returns the created
action when it is set
|
|
|
|
It seemed like it was more sensible to put this class in with the other
IO related things, instead of in with the GUI stuff
|
|
Adds unit tests for SimpleDefine and IteratedDefine.
This also fixes an issue with IteratedDefine, where once you had
consumed a replacer, it was consumed for good; you couldn't use it in
the future, even in a different call to apply().
This was fixed through the introduction of a new iterator type from
esodata - ResettableIterator. See that project/type for more details on
what exactly this does; but suffice to say, it allows to restore our
iterator and re-iterate over the same elements on every call to apply.
|
|
This renames several of the stock exceptions to remove 'Exception' from
their name. This is something that I don't recall where I picked it up
from, but the idea is that the fact that it is an exception is generally
syntactically obvious. Therefore, you can instead give your exceptions
names which directly state what it wrong, as well as strongly implying
what you can do to fix it.
For instance, if you get a DirectionInvalid, it is apparent what the
issue is (it is less apparent why it is invalid, but that is another
issue, and a discussion for another time)
|
|
|
|
Take care of some various warnings that were occuring
|
|
This is an output stream that mirrors what is written to it to all of
its composite output streams.
|
|
|
|
Cleanup some latent bugs
|
|
Cleanup pass to uniformize things
|
|
Add some javadoc comments
|
|
Finished extracting the old version of esodata, and fixed all the local
issues
|
|
utils.esodata now also lives in the esodata project; not here
|
|
utils.data now lives in the esodata project; not in this one
|
|
Cleanup some warnings
|
|
Add an additional UI control (a button that has a keystroke bound to
it), and add the ability to get a directory picker from
SimpleFileChooser
|
|
Add an ability to append an item to a tape. Currently, the
implementation is kind of inefficent for everything that isn't a
SingleTape
|
|
This class parses DualExprs from prefix expressions
|
|
Tests are now in a 'test' sub-package, so it is clear that they are
indeed test code, not just disjoint parts of the main code
|
|
Just clean up of some warnings/other misc. problems
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|