-
Notifications
You must be signed in to change notification settings - Fork 259
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement ANTLR based TokenMaker #353
base: master
Are you sure you want to change the base?
Conversation
63dcb37
to
f9ca8db
Compare
23eb771
to
62cf009
Compare
Hi @bobbylight, What do you think about this? Is this something you would think of as usefull? My design goal for this was not to recreate the same token output as the existing TokenMakers have, but to use unchanged Next step is creating a bit of documentation on how to use it. I have added some example grammars to the demo application for a quick start. I see the following possibilities, going forward:
|
68b523f
to
387d5f6
Compare
Can we have the |
@bobbylight Would you consider adding this? Otherwise I will create an own project for it. |
As it seems, this is not going to get merged, I have created my own project: It is the same code as in this PR, just moved to my namespace. I have not yet added the examples, but the code is usable. Also documentation is missing, yet. I'm open for feature requests, bug reports and improvements. First release is already in Maven Central: I will leave this PR open, if there is interest from @bobbylight to merge this in, I'm more than happy to do so. |
@tisoft Thanks for taking the initiative here, I've been stretched too thin and have neglected RSTA. This is something that's been requested for a while now, as you're aware. I hope to check out this PR soon, though it may be some time in April. BTW, I saw you made an Antlr 6502 parser - is that out of interest on your part, or did you just grep projects for Antlr implementations for a breadth of test cases? Learning NES Assembly programming is also on my todo list :) |
@bobbylight Thanks for the status update! I'll update this PR with the improvements I made and will keep it current. I just took some example grammars, to have something for the demo program and for testing. My goal is to match every from your supported languages with an ANTLR based and have some more. 😆 |
I have rebased against master and also updated the code with the latest changes I did in my fork. |
Fixes #221