5a66991bb3
updating the kubernetes release to the latest in main go.mod Signed-off-by: Madhu Rajanna <madhupr007@gmail.com> |
||
---|---|---|
.. | ||
.gitignore | ||
antlrdoc.go | ||
atn_config_set.go | ||
atn_config.go | ||
atn_deserialization_options.go | ||
atn_deserializer.go | ||
atn_simulator.go | ||
atn_state.go | ||
atn_type.go | ||
atn.go | ||
char_stream.go | ||
common_token_factory.go | ||
common_token_stream.go | ||
comparators.go | ||
configuration.go | ||
dfa_serializer.go | ||
dfa_state.go | ||
dfa.go | ||
diagnostic_error_listener.go | ||
error_listener.go | ||
error_strategy.go | ||
errors.go | ||
file_stream.go | ||
input_stream.go | ||
int_stream.go | ||
interval_set.go | ||
jcollect.go | ||
lexer_action_executor.go | ||
lexer_action.go | ||
lexer_atn_simulator.go | ||
lexer.go | ||
LICENSE | ||
ll1_analyzer.go | ||
nostatistics.go | ||
parser_atn_simulator.go | ||
parser_rule_context.go | ||
parser.go | ||
prediction_context_cache.go | ||
prediction_context.go | ||
prediction_mode.go | ||
README.md | ||
recognizer.go | ||
rule_context.go | ||
semantic_context.go | ||
statistics.go | ||
stats_data.go | ||
token_source.go | ||
token_stream.go | ||
token.go | ||
tokenstream_rewriter.go | ||
trace_listener.go | ||
transition.go | ||
tree.go | ||
trees.go | ||
utils.go |
ANTLR4 Go Runtime Module Repo
IMPORTANT: Please submit PRs via a clone of the https://github.com/antlr/antlr4 repo, and not here.
- Do not submit PRs or any change requests to this repo
- This repo is read only and is updated by the ANTLR team to create a new release of the Go Runtime for ANTLR
- This repo contains the Go runtime that your generated projects should import
Introduction
This repo contains the official modules for the Go Runtime for ANTLR. It is a copy of the runtime maintained at: https://github.com/antlr/antlr4/tree/master/runtime/Go/antlr and is automatically updated by the ANTLR team to create the official Go runtime release only. No development work is carried out in this repo and PRs are not accepted here.
The dev branch of this repo is kept in sync with the dev branch of the main ANTLR repo and is updated periodically.
Why?
The go get
command is unable to retrieve the Go runtime when it is embedded so
deeply in the main repo. A go get
against the antlr/antlr4
repo, while retrieving the correct source code for the runtime,
does not correctly resolve tags and will create a reference in your go.mod
file that is unclear, will not upgrade smoothly and
causes confusion.
For instance, the current Go runtime release, which is tagged with v4.13.0 in antlr/antlr4
is retrieved by go get as:
require (
github.com/antlr/antlr4/runtime/Go/antlr/v4 v4.0.0-20230219212500-1f9a474cc2dc
)
Where you would expect to see:
require (
github.com/antlr/antlr4/runtime/Go/antlr/v4 v4.13.0
)
The decision was taken to create a separate org in a separate repo to hold the official Go runtime for ANTLR and
from whence users can expect go get
to behave as expected.
Documentation
Please read the official documentation at: https://github.com/antlr/antlr4/blob/master/doc/index.md for tips on migrating existing projects to use the new module location and for information on how to use the Go runtime in general.