0.0
No commit activity in last 3 years
No release in over 3 years
There's a lot of open issues
This gem implements a runtime for ANTLR4 in Ruby for lexers and parsers generated using the Ruby language target.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

>= 12.3.3
~> 3.0
~> 0.16.1
 Project Readme

Antlr4::Runtime

This gem adds support for the ANTLR4 runtime for Ruby lexers and parsers generated from the Ruby langauge target available at https://github.com/twalmsley/antlr4/tree/ruby_dev

Generate Your Ruby ANTLR4 Grammar

In a clean directory:

$ git clone git@github.com:twalmsley/antlr4.git
$ cd antlr4
$ git checkout ruby_dev
$ export MAVEN_OPTS="-Xmx1G"
$ mvn clean
$ mvn -DskipTests install
$ cd <my-grammar-directory>
$ java -jar ~/.m2/repository/org/antlr/antlr4/4.7.3-SNAPSHOT/antlr4-4.7.3-SNAPSHOT-complete.jar \
   -o <output_dir_full_path> \
   -listener \
   -visitor \
   -package MYGrammar \
   -Dlanguage=Ruby \
   MYGrammarLexer.g4 MYGrammarParser.g4

Installation

Add this line to your application's Gemfile:

gem 'antlr4-runtime'

And then execute:

$ bundle install

Or clone the repository and build and install it yourself as:

$ rake install

or if that fails:

$ sudo rake install

Usage

require './MYGrammarParserListener'
require './MYGrammarParserBaseListener'
require './MYGrammarParserVisitor'
require './MYGrammarLexer'
require './MYGrammarParser'

str = 'a=b'
lexer = MYGrammar::MYGrammarLexer.new(Antlr4::Runtime::CharStreams.from_string(str, 'String'))
lexer.remove_error_listeners

tokens = Antlr4::Runtime::CommonTokenStream.new(lexer)

parser = MYGrammar::MYGrammarParser.new(tokens)

parsed = MYGrammar::MYGrammarParserBaseListener.new
parser.my_grammar_entry_rule.enter_rule(parsed)

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/MODLanguage/antlr4-ruby-runtime. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in the Antlr4::Runtime project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.