-
Notifications
You must be signed in to change notification settings - Fork 4.3k
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
New Grammars Compiler #3915
Merged
Merged
New Grammars Compiler #3915
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
d08375d
grammars: Update several grammars with compat issues
vmg a0a9e53
[WIP] Add new grammar conversion tools
vmg e8b4012
Wrap in a Docker script
vmg 428936c
Proper Dockerfile support
vmg e25259b
Add Javadoc grammar
vmg 4712829
Remove NPM package.json
vmg 73af959
Remove superfluous test
vmg bc5bda1
Update JSyntax grammar to new submodule
vmg 245d521
Approve Javadoc license
vmg 4c956ed
Merge remote-tracking branch 'origin/master' into vmg/fixed-grammars
kivikakk d4da867
grammars: Remove checked-in dependencies
vmg 3529e3d
grammars: Add regex checks to the compiler
vmg 6b8b1b9
grammars: Point Oz to its actual submodule
vmg 2a91b07
grammars: Refactor compiler to group errors by repo
vmg d7f07ff
grammars: Cleanups to error reporting
vmg File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/sh | ||
|
||
set -e | ||
cd "$(dirname "$0")/.." | ||
|
||
image="linguist/grammar-compiler:latest" | ||
mkdir -p grammars | ||
|
||
exec docker run --rm \ | ||
-u $(id -u $USER):$(id -g $USER) \ | ||
-v $PWD:/src/linguist \ | ||
-w /src/linguist -ti $image "$@" |
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we move scripts to the new
tools/
directory or is there a clear distinction between the two (besides the fact that one contains scripting language programs)? If the idea is to always use tools through scripts maybetools/
should be a subdirectory (with a new name?) inscript/
...?