-
Notifications
You must be signed in to change notification settings - Fork 7
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
Add initial UI prototype #84
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Coerce ints to doubles where necessary
See |
Streamline distribution files
Fixes JMU-CS#87 in the UI by avoiding EOL/EOF issues with ANTLR: https://www.antlr3.org/pipermail/antlr-interest/2011-January/040642.html
This workaround clears up some of the stray error messages that show up in the UI. A better solution is described in JMU-CS#89.
This is still broken at the moment because the wrappers aren't being properly integrated for some reason.
This repairs part of the breakage in the build system cleanup (44c2bc0). Run works, and test executes but for some reason JUnit can't find the tests anymore.
* Added testing of files to lj script * Replaced error message of programs not having main with a warning, and stopped the lj script from running programs without a main function * Rebuilt dotests.sh so it works with the lj script where all output is in a single file (fixes JMU-CS#50) * Reset all test outputs to match the new format. * Set the travis file to call dotests.sh over the entire tests directory * Added the exit 1 condition for any failing outputs in dotests.sh (travis will fail incorrect outputs) * Fixed the primitive-numbers test and removed it from the failing directory * Fixed incorrect io tests that didn't match the language and reset their output. * Added .in files for any io tests that required them and were lacking them. * Updated the README
With the recent removal of |
LGTM! Merge at your own discretion |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is a quick-and-dirty proof of concept of a simple Swing UI for the user study. It's completely barebones and brittle at the moment, but at least provides a starting point for further discussion and development related to #25.
For now I changed the default main class in Gradle so you can just use
./gradlew run
to start it. That will obviously need to be cleaned up if we end up using this.