summaryrefslogtreecommitdiff
path: root/src/main/java/bjc/rgens/parser/elements/InlineRuleCaseElement.java
AgeCommit message (Collapse)Author
2020-04-12Adjust to BJC-Utils changesBen Culkin
Several packages were moved from BJC-Utils to esodata. This makes the necessary changes
2020-03-30Clean up warningsBen Culkin
Clean up some warnings that were hanging around
2019-07-21Merge cleanupsbculkin2442
2019-07-21Refactor front-end error-handlingBenjamin J. Culkin
This refactors the front-end to use a tree for capturing errors, instead of throwing exceptions. This has the benefit that you will receive notifications about all of the error messages you have, instead of only the first. I'm a bit fuzzy on the details, since it's been a while since I wrote these changes.
2018-10-28General cleanupbculkin2442
2018-07-17Swap to using for-each loops instead of for-each methodBenjamin J. Culkin
2018-06-08Major refactoringBenjamin J. Culkin
A major refactoring to the internals of how things work. I believe that nothing is broken
2018-06-07RefactoringBenjamin J. Culkin
The main refactoring here is removing the type field from the various classes, but there are a few other smaller ones. This also contains the grounds for a refactoring on variable use
2018-06-04Add syntax featuresBenjamin J. Culkin
This adds a few new syntax features, as well as allowing certain ones to be used in pragmas. The next syntax feature to be added will be some sort of quote feature, to allow the inclusion of spaces where they would otherwise not be permitted
2018-06-03Add inline case elementsBenjamin J. Culkin
This adds inline case elements, essentially cutting down on the need for short 2-3 alternative rules. You'll still need explicit rules for things involving spaces though. Perhaps I will add a quoting feature to solve that problem.