forked from jasder/antlr
Merge pull request #1624 from bhamiltoncx/contributing-doc
New doc 'Contributing to ANTLR'
This commit is contained in:
commit
64b29cc82c
|
@ -0,0 +1,10 @@
|
|||
# Contributing to ANTLR 4
|
||||
|
||||
1. [Fork](https://help.github.com/articles/fork-a-repo) the [antlr/antlr4 repo](https://github.com/antlr/antlr4)
|
||||
2. Install and configure [EditorConfig](http://editorconfig.org/) so your text editor or IDE uses the ANTLR 4 coding style
|
||||
3. [Build ANTLR 4](doc/building-antlr.md)
|
||||
4. [Run the ANTLR project unit tests](doc/antlr-project-testing.md)
|
||||
5. Create a [pull request](https://help.github.com/articles/using-pull-requests/) including your change
|
||||
|
||||
|
||||
**Note:** You must sign the `contributors.txt` certificate of origin with your pull request if you've not done so before.
|
|
@ -16,7 +16,7 @@ Links in the documentation refer to various sections of the book but have been r
|
|||
<a href=""><img src=images/tpantlr2.png width=120></a>
|
||||
<a href=""><img src=images/tpdsl.png width=120></a>
|
||||
<a href="https://www.youtube.com/watch?v=OAoA3E-cyug"><img src=images/teronbook.png width=250></a>
|
||||
|
||||
|
||||
This documentation is a reference and summarizes grammar syntax and the key semantics of ANTLR grammars. The source code for all examples in the book, not just this chapter, are free at the publisher's website. The following video is a general tour of ANTLR 4 and includes a description of how to use parse tree listeners to process Java files easily:
|
||||
|
||||
<a href="https://vimeo.com/59285751"><img src=images/tertalk.png width=200></a>
|
||||
|
@ -52,7 +52,7 @@ This documentation is a reference and summarizes grammar syntax and the key sema
|
|||
* [Runtime Libraries and Code Generation Targets](targets.md)
|
||||
|
||||
* [Parsing binary streams](parsing-binary-files.md)
|
||||
|
||||
|
||||
* [Parser and lexer interpreters](interpreters.md)
|
||||
|
||||
* [Resources](resources.md)
|
||||
|
@ -61,6 +61,8 @@ This documentation is a reference and summarizes grammar syntax and the key sema
|
|||
|
||||
* [Building ANTLR itself](building-antlr.md)
|
||||
|
||||
* [Contributing to ANTLR](/CONTRIBUTING.md)
|
||||
|
||||
* [Cutting an ANTLR Release](releasing-antlr.md)
|
||||
|
||||
* [ANTLR project unit tests](antlr-project-testing.md)
|
||||
|
|
Loading…
Reference in New Issue