{"id":17722818,"url":"https://github.com/bramp/antlr4-grammars","last_synced_at":"2025-10-18T20:48:42.672Z","repository":{"id":57487904,"uuid":"105348923","full_name":"bramp/antlr4-grammars","owner":"bramp","description":"Precompiled Go versions of most of the grammars on https://github.com/antlr/grammars-v4.","archived":false,"fork":false,"pushed_at":"2022-01-04T23:01:36.000Z","size":11584,"stargazers_count":100,"open_issues_count":7,"forks_count":22,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-04-12T11:13:55.333Z","etag":null,"topics":["antlr","go"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bramp.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-09-30T06:51:20.000Z","updated_at":"2025-01-11T13:54:56.000Z","dependencies_parsed_at":"2022-08-29T10:20:50.354Z","dependency_job_id":null,"html_url":"https://github.com/bramp/antlr4-grammars","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bramp%2Fantlr4-grammars","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bramp%2Fantlr4-grammars/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bramp%2Fantlr4-grammars/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bramp%2Fantlr4-grammars/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bramp","download_url":"https://codeload.github.com/bramp/antlr4-grammars/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249250293,"owners_count":21237869,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["antlr","go"],"created_at":"2024-10-25T15:39:28.285Z","updated_at":"2025-10-18T20:48:37.627Z","avatar_url":"https://github.com/bramp.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# antlr4 Go parsers [![Build Status](https://img.shields.io/travis/bramp/antlr4-grammars.svg)](https://travis-ci.org/bramp/antlr4-grammars) [![Coverage](https://img.shields.io/coveralls/bramp/antlr4-grammars.svg)](https://coveralls.io/github/bramp/antlr4-grammars) [![Report card](https://goreportcard.com/badge/bramp.net/antlr4)](https://goreportcard.com/report/bramp.net/antlr4) [![GoDoc](https://godoc.org/bramp.net/antlr4?status.svg)](https://godoc.org/bramp.net/antlr4)\nCompiled by Andrew Brampton ([bramp.net](https://bramp.net))\n\nPrecompiled Go parsers of many of the grammars on [github.com/antlr/grammars-v4](http://github.com/antlr/grammars-v4).\n\nThe Antlr's Go Target is still a work in progress. As such, many of the grammars fail to compile, or only pass simple tests. To report issues with the grammar [go here](https://github.com/antlr/grammars-v4), to report issues with Antlr's Go Target [go here](https://github.com/antlr/antlr4).\n\n## Quick Start\n\nJust import one of the parser listed in the table below:\n\n```go\nimport (\n\t\"bramp.net/antlr4/\u003cname of grammar\u003e\"\n)\n```\n\nThen the Antlr Lexer, Parser, and Listeners are available. More information on each Grammar's API is found on the [godocs](https://godoc.org/bramp.net/antlr4) with examples.\n\n## Full Example (using the json parser)\n\n```go\nimport (\n\t\"fmt\"\n\n\t\"bramp.net/antlr4/json\"                    // The parser\n\t\"github.com/antlr/antlr4/runtime/Go/antlr\" // The antlr library\n)\n\n// exampleListener is an event-driven callback for the parser.\ntype exampleListener struct {\n\t*json.BaseJSONListener // https://godoc.org/bramp.net/antlr4/json#BaseJSONListener\n}\n\nfunc (l *exampleListener) EnterObj(ctx *json.ObjContext) {\n\tfmt.Printf(\"Object: %s\\n\", ctx.GetText())\n}\n\nfunc (l *exampleListener) EnterPair(ctx *json.PairContext) {\n\tfmt.Printf(\"Pair: %s\\n\", ctx.GetText())\n}\n\nfunc (l *exampleListener) EnterArray(ctx *json.ArrayContext) {\n\tfmt.Printf(\"Array: %s\\n\", ctx.GetText())\n}\n\n// Example shows how to use the JSON lexer and parser.\nfunc Example() {\n\t// Setup the input\n\tis := antlr.NewInputStream(`{\"example\": \"json\", \"with\": [\"an\", \"array\"]}`)\n\n\t// Create the Lexer\n\tlexer := json.NewJSONLexer(is)\n\tstream := antlr.NewCommonTokenStream(lexer, antlr.TokenDefaultChannel)\n\n\t// Create the Parser\n\tp := json.NewJSONParser(stream)\n\tp.BuildParseTrees = true\n\tp.AddErrorListener(antlr.NewDiagnosticErrorListener(true))\n\n\t// Finally walk the tree\n\ttree := p.Json()\n\tantlr.ParseTreeWalkerDefault.Walk(\u0026exampleListener{}, tree)\n\n\t// Output:\n\t// Object: {\"example\":\"json\",\"with\":[\"an\",\"array\"]}\n\t// Pair: \"example\":\"json\"\n\t// Pair: \"with\":[\"an\",\"array\"]\n\t// Array: [\"an\",\"array\"]\n}\n```\n\n## Supported Languages\n\n| Status | Language     | Notes                                                                       |\n| :-: | --------------- | --------------------------------------------------------------------------- |\n| ✅  | abb             |                                                                             |\n| ✅  | abnf            |                                                                             |\n| ✅  | agc             |                                                                             |\n| ✅  | alef            |                                                                             |\n| ✅  | alloy           |                                                                             |\n| ✅  | alpaca          |                                                                             |\n| ✅  | angelscript     |                                                                             |\n| ✅  | apt             |                                                                             |\n| ✅  | argus           |                                                                             |\n| ✅  | arithmetic      |                                                                             |\n| ✅  | asl             |                                                                             |\n| ✅  | asm6502         |                                                                             |\n| ✅  | asm8080         |                                                                             |\n| ✅  | asm8086         |                                                                             |\n| ✅  | asmz80          |                                                                             |\n| ✅  | asn             |                                                                             |\n| ✅  | atl             |                                                                             |\n| ✅  | b               |                                                                             |\n| ✅  | bcl             |                                                                             |\n| ✅  | bcpl            |                                                                             |\n| ✅  | bdf             |                                                                             |\n| ✅  | beep            |                                                                             |\n| ✅  | bibcode         |                                                                             |\n| ✅  | bnf             |                                                                             |\n| ✅  | brainflak       |                                                                             |\n| ✅  | brainfuck       |                                                                             |\n| ✅  | bsl             |                                                                             |\n| ✅  | c               |                                                                             |\n| ✅  | calculator      |                                                                             |\n| ✅  | callable_       |                                                                             |\n| ✅  | cayenne         |                                                                             |\n| ✅  | classify        |                                                                             |\n| ✅  | clf             |                                                                             |\n| ✅  | clojure         |                                                                             |\n| ✅  | clu             |                                                                             |\n| ✅  | cmake           |                                                                             |\n| ✅  | cobol85         |                                                                             |\n| ✅  | cobol85preprocessor |                                                                             |\n| ✅  | cookie          |                                                                             |\n| ✅  | cool            |                                                                             |\n| ✅  | corundum        |                                                                             |\n| ✅  | cql             |                                                                             |\n| ✅  | creole          |                                                                             |\n| ✅  | css3            |                                                                             |\n| ✅  | csv             |                                                                             |\n| ✅  | ctl             |                                                                             |\n| ✅  | dart2           |                                                                             |\n| ✅  | databank        |                                                                             |\n| ✅  | datetime        |                                                                             |\n| ✅  | dcm_2_0_grammar |                                                                             |\n| ✅  | dgol            |                                                                             |\n| ✅  | dgs             |                                                                             |\n| ✅  | dif             |                                                                             |\n| ✅  | doiurl          |                                                                             |\n| ✅  | domain          |                                                                             |\n| ✅  | dot             |                                                                             |\n| ✅  | ecmascript      |                                                                             |\n| ✅  | emailaddress    |                                                                             |\n| ✅  | erlang          |                                                                             |\n| ✅  | fasta           |                                                                             |\n| ✅  | fen             |                                                                             |\n| ✅  | filter          |                                                                             |\n| ✅  | flowmatic       |                                                                             |\n| ✅  | focal           |                                                                             |\n| ✅  | fol             |                                                                             |\n| ✅  | fusiontablessql |                                                                             |\n| ✅  | gedcom          |                                                                             |\n| ✅  | gff3            |                                                                             |\n| ✅  | gml             |                                                                             |\n| ✅  | graphemes       |                                                                             |\n| ✅  | graphql         |                                                                             |\n| ✅  | gtin            |                                                                             |\n| ✅  | guido           |                                                                             |\n| ✅  | http            |                                                                             |\n| ✅  | icon            |                                                                             |\n| ✅  | idl             |                                                                             |\n| ✅  | infosapient     |                                                                             |\n| ✅  | iri             |                                                                             |\n| ✅  | isl             |                                                                             |\n| ✅  | iso8601         |                                                                             |\n| ✅  | istc            |                                                                             |\n| ✅  | itn             |                                                                             |\n| ✅  | janus           |                                                                             |\n| ✅  | java8           |                                                                             |\n| ✅  | joss            |                                                                             |\n| ✅  | jpa             |                                                                             |\n| ✅  | json            |                                                                             |\n| ✅  | json5           |                                                                             |\n| ✅  | karel           |                                                                             |\n| ✅  | krl             |                                                                             |\n| ✅  | lambda          |                                                                             |\n| ✅  | lark            |                                                                             |\n| ✅  | lcc             |                                                                             |\n| ✅  | less            |                                                                             |\n| ✅  | lexunicode      |                                                                             |\n| ✅  | limbo           |                                                                             |\n| ✅  | lisa            |                                                                             |\n| ✅  | lolcode         |                                                                             |\n| ✅  | loop            |                                                                             |\n| ✅  | lrc             |                                                                             |\n| ✅  | ltl             |                                                                             |\n| ✅  | matlab          |                                                                             |\n| ✅  | mdx             |                                                                             |\n| ✅  | memcached_protocol |                                                                             |\n| ✅  | metamath        |                                                                             |\n| ✅  | metric          |                                                                             |\n| ✅  | microc          |                                                                             |\n| ✅  | modelica        |                                                                             |\n| ✅  | molecule        |                                                                             |\n| ✅  | morsecode       |                                                                             |\n| ✅  | mps             |                                                                             |\n| ✅  | mu              |                                                                             |\n| ✅  | mumath          |                                                                             |\n| ✅  | mumps           |                                                                             |\n| ✅  | nanofuck        |                                                                             |\n| ✅  | newick          |                                                                             |\n| ✅  | objectivec      |                                                                             |\n| ✅  | oncrpcv2        |                                                                             |\n| ✅  | orwell          |                                                                             |\n| ✅  | p               |                                                                             |\n| ✅  | pcre            |                                                                             |\n| ✅  | pddl            |                                                                             |\n| ✅  | peoplecode      |                                                                             |\n| ✅  | pii             |                                                                             |\n| ✅  | pike            |                                                                             |\n| ✅  | pl0             |                                                                             |\n| ✅  | plucid          |                                                                             |\n| ✅  | pmmn            |                                                                             |\n| ✅  | postalcode      |                                                                             |\n| ✅  | powerbuilderdw  |                                                                             |\n| ✅  | powerquery      |                                                                             |\n| ✅  | prolog          |                                                                             |\n| ✅  | promql          |                                                                             |\n| ✅  | propcalc        |                                                                             |\n| ✅  | properties      |                                                                             |\n| ✅  | protobuf3       |                                                                             |\n| ✅  | prov_n          |                                                                             |\n| ✅  | qif             |                                                                             |\n| ✅  | r               |                                                                             |\n| ✅  | rcs             |                                                                             |\n| ✅  | redcode         |                                                                             |\n| ✅  | refal           |                                                                             |\n| ✅  | regex           |                                                                             |\n| ✅  | restructuredtext |                                                                             |\n| ✅  | robotwar        |                                                                             |\n| ✅  | romannumerals   |                                                                             |\n| ✅  | rpn             |                                                                             |\n| ✅  | scala           |                                                                             |\n| ✅  | scotty          |                                                                             |\n| ✅  | scss            |                                                                             |\n| ✅  | sexpression     |                                                                             |\n| ✅  | sgf             |                                                                             |\n| ✅  | sharc           |                                                                             |\n| ✅  | sici            |                                                                             |\n| ✅  | sickbay         |                                                                             |\n| ✅  | smiles          |                                                                             |\n| ✅  | snobol          |                                                                             |\n| ✅  | snowball        |                                                                             |\n| ✅  | solidity        |                                                                             |\n| ✅  | sqlite          |                                                                             |\n| ✅  | stacktrace      |                                                                             |\n| ✅  | stellaris       |                                                                             |\n| ✅  | stl             |                                                                             |\n| ✅  | suokif          |                                                                             |\n| ✅  | systemverilog   |                                                                             |\n| ✅  | teal            |                                                                             |\n| ✅  | telephone       |                                                                             |\n| ✅  | tiny            |                                                                             |\n| ✅  | tinybasic       |                                                                             |\n| ✅  | tinyc           |                                                                             |\n| ✅  | tl              |                                                                             |\n| ✅  | tnsnames        |                                                                             |\n| ✅  | tnt             |                                                                             |\n| ✅  | tsv             |                                                                             |\n| ✅  | unicodeclasses  |                                                                             |\n| ✅  | upnp            |                                                                             |\n| ✅  | useragent       |                                                                             |\n| ✅  | vba             |                                                                             |\n| ✅  | verilog         |                                                                             |\n| ✅  | vhdl            |                                                                             |\n| ✅  | vmf             |                                                                             |\n| ✅  | wat             |                                                                             |\n| ✅  | wavefrontobj    |                                                                             |\n| ✅  | webidl          |                                                                             |\n| ✅  | wkt             |                                                                             |\n| ✅  | wln             |                                                                             |\n| ✅  | xml             |                                                                             |\n| ❌  | acme            | test: FAIL                                                                  |\n| ❌  | algol60         | antlr: error(134): algol60.g4:144:19: symbol String conflicts with generated code in target language or runtime |\n| ❌  | altpython3      | build: altpython3/altpython3_lexer.go:816:13: too many errors               |\n| ❌  | antlrv2         | build: antlrv2/antlrv2_lexer.go:591:2: undefined: LexerAdaptor              |\n| ❌  | antlrv3         | build: antlrv3/antlrv3_lexer.go:545:2: undefined: LexerAdaptor              |\n| ❌  | antlrv4         | build: antlrv4/antlrv4_lexer.go:410:2: undefined: LexerAdaptor              |\n| ❌  | apex            | build: apex/apex_lexer.go:930:70: syntax error: unexpected _input, expecting comma or ) |\n| ❌  | asmmasm         | antlr: error(134): asmMASM.g4:182:5: symbol string conflicts with generated code in target language or runtime |\n| ❌  | asn_3gpp        | build: asn_3gpp/asn_3gpp_lexer.go:682:10: undefined: getCharPositionInLine  |\n| ❌  | aspectj         | antlr: error(56): /Users/bramp/personal/antlr4-grammars/grammars-v4/aspectj/AspectJLexer.g4:382:21: reference to undefined rule: Identifier |\n| ❌  | capnproto       | test: FAIL                                                                  |\n| ❌  | clif            | test: FAIL                                                                  |\n| ❌  | cpp14           | build: \t/Users/bramp/personal/antlr4-grammars/cpp14/cpp14_parser.go:26954:49: previous declaration |\n| ❌  | csharp          | build: csharp/csharp_lexer.go:1194:2: undefined: CSharpLexerBase            |\n| ❌  | cto             | test: FAIL                                                                  |\n| ❌  | dicenotation    | test: FAIL                                                                  |\n| ❌  | edif300         | antlr: error(134): EDIF300.g4:3082:24: symbol string conflicts with generated code in target language or runtime |\n| ❌  | edn             | test: FAIL                                                                  |\n| ❌  | file.           | build: malformed import path \"bramp.net/antlr4/file.\": trailing dot in path element |\n| ❌  | flatbuffers     | test: FAIL                                                                  |\n| ❌  | fortran77       | build: fortran77/fortran77_lexer.go:1070:10: undefined: getCharPositionInLine |\n| ❌  | gdscript        | build: gdscript/gdscript_lexer.go:543:2: undefined: GDScriptLexerBase       |\n| ❌  | go              | build: go/go_lexer.go:3:9: expected 'IDENT', found 'go'                     |\n| ❌  | guitartab       | antlr: error(134): guitartab.g4:35:5: symbol string conflicts with generated code in target language or runtime |\n| ❌  | haskell         | build: haskell/haskell_lexer.go:871:2: undefined: HaskellBaseLexer          |\n| ❌  | hive            | build: \t/Users/bramp/personal/antlr4-grammars/hive/hive_parser.go:49454:6: previous declaration |\n| ❌  | html            | test: FAIL                                                                  |\n| ❌  | hypertalk       | antlr: error(134): HyperTalk.g4:281:20: symbol range conflicts with generated code in target language or runtime |\n| ❌  | icalendar       | antlr: error(134): ICalendar.g4:284:5: symbol action conflicts with generated code in target language or runtime |\n| ❌  | inf             | antlr: error(134): inf.g4:57:17: symbol string conflicts with generated code in target language or runtime |\n| ❌  | informix        | antlr: error(134): informix.g4:601:266: symbol string conflicts with generated code in target language or runtime |\n| ❌  | java            | test: FAIL                                                                  |\n| ❌  | java9           | build: java9/java9_lexer.go:635:2: undefined: Java9LexerBase                |\n| ❌  | javadoc         | build: javadoc/javadoc_lexer.go:169:10: undefined: _input                   |\n| ❌  | javascript      | build: javascript/javascript_lexer.go:894:2: undefined: JavaScriptLexerBase |\n| ❌  | jvmbasic        | test: FAIL                                                                  |\n| ❌  | kotlin          | antlr: error(134): KotlinParser.g4:325:75: symbol type conflicts with generated code in target language or runtime |\n| ❌  | logo            | antlr: error(134): logo.g4:60:5: symbol make conflicts with generated code in target language or runtime |\n| ❌  | lpc             | antlr: error(134): LPC.g4:671:20: symbol String conflicts with generated code in target language or runtime |\n| ❌  | lua             | antlr: error(134): Lua.g4:112:6: symbol string conflicts with generated code in target language or runtime |\n| ❌  | m2pim4          | antlr: error(134): m2pim4.g4:243:5: symbol string conflicts with generated code in target language or runtime |\n| ❌  | masm            | antlr: error(134): MASM.g4:127:31: symbol String conflicts with generated code in target language or runtime |\n| ❌  | mckeemanform    | antlr: error(134): McKeemanForm.g4:43:6: symbol String conflicts with generated code in target language or runtime |\n| ❌  | moo             | antlr: error(134): moo.g4:205:5: symbol real conflicts with generated code in target language or runtime |\n| ❌  | muddb           | antlr: error(134): muddb.g4:104:5: symbol string conflicts with generated code in target language or runtime |\n| ❌  | mysql           | maketest: exit status 1                                                     |\n| ❌  | oberon          | antlr: error(134): oberon.g4:65:5: symbol real conflicts with generated code in target language or runtime |\n| ❌  | pascal          | antlr: error(134): pascal.g4:367:5: symbol string conflicts with generated code in target language or runtime |\n| ❌  | pdn             | antlr: error(134): pdn.g4:44:14: symbol string conflicts with generated code in target language or runtime |\n| ❌  | pdp7            | antlr: error(134): pdp7.g4:87:5: symbol string conflicts with generated code in target language or runtime |\n| ❌  | pgn             | build: pgn/pgn_lexer.go:193:10: undefined: getCharPositionInLine            |\n| ❌  | php             | build: php/php_lexer.go:1159:2: undefined: PhpLexerBase                     |\n| ❌  | plsql           | build: plsql/plsql_lexer.go:15810:2: undefined: PlSqlLexerBase              |\n| ❌  | ply             | antlr: error(134): ply.g4:65:35: symbol string conflicts with generated code in target language or runtime |\n| ❌  | postgresql      | build: postgresql/postgresql_lexer.go:3695:73: syntax error: unexpected InputStream, expecting comma or ) |\n| ❌  | powerbuilder    | test: FAIL                                                                  |\n| ❌  | python          | build: python/python_lexer.go:548:2: undefined: PythonLexerBase             |\n| ❌  | python2         | build: python2/python2_lexer.go:636:8: too many errors                      |\n| ❌  | python3         | build: python3/python3_lexer.go:742:2: undefined: Python3LexerBase          |\n| ❌  | quakemap        | antlr: error(134): quakemap.g4:44:12: symbol string conflicts with generated code in target language or runtime |\n| ❌  | rego            | antlr: error(134): RegoLexer.g4:40:0: symbol String conflicts with generated code in target language or runtime |\n| ❌  | rexx            | build: rexx/rexx_lexer.go:880:2: syntax error: unexpected default, expecting } |\n| ❌  | rust            | build: rust/rust_lexer.go:635:2: undefined: RustLexerBase                   |\n| ❌  | sieve           | antlr: error(134): sieve.g4:70:21: symbol string conflicts with generated code in target language or runtime |\n| ❌  | smalltalk       | antlr: error(134): Smalltalk.g4:50:57: symbol string conflicts with generated code in target language or runtime |\n| ❌  | smtlibv2        | antlr: error(134): SMTLIBv2.g4:1089:23: symbol string conflicts with generated code in target language or runtime |\n| ❌  | sparql          | antlr: error(134): Sparql.g4:300:6: symbol string conflicts with generated code in target language or runtime |\n| ❌  | st              | build: st/st_lexer.go:790:70: syntax error: unexpected _input, expecting comma or ) |\n| ❌  | stg             | build: stg/stg_lexer.go:715:70: syntax error: unexpected _input, expecting comma or ) |\n| ❌  | swift2          | build: swift2/swift2_parser.go:35927:31: too many errors                    |\n| ❌  | swift3          | build: swift3/swift3_parser.go:40532:7: too many errors                     |\n| ❌  | swift5          | build: swift5/swift5_lexer.go:12:13: expected 'STRING', found '.'           |\n| ❌  | swiftfin        | antlr: error(134): SwiftFinParser.g4:61:16: symbol map conflicts with generated code in target language or runtime |\n| ❌  | tcp             | test: FAIL                                                                  |\n| ❌  | terraform       | antlr: error(134): terraform.g4:133:5: symbol string conflicts with generated code in target language or runtime |\n| ❌  | thrift          | test: FAIL                                                                  |\n| ❌  | tinymud         | antlr: error(134): tinymud.g4:40:16: symbol action conflicts with generated code in target language or runtime |\n| ❌  | tinyos          | build: tinyos/tinyos_parser.go:3633:3: undefined: System                    |\n| ❌  | tjs             | antlr: error(134): TJSLexer.g4:132:0: symbol String conflicts with generated code in target language or runtime |\n| ❌  | toml            | antlr: error(134): toml.g4:44:8: symbol string conflicts with generated code in target language or runtime |\n| ❌  | trac            | antlr: error(134): trac.g4:62:5: symbol string conflicts with generated code in target language or runtime |\n| ❌  | tsql            | test: FAIL                                                                  |\n| ❌  | ttm             | antlr: error(134): ttm.g4:62:5: symbol string conflicts with generated code in target language or runtime |\n| ❌  | turing          | antlr: error(134): turing.g4:193:31: symbol string conflicts with generated code in target language or runtime |\n| ❌  | turtle          | antlr: error(134): TURTLE.g4:112:5: symbol String conflicts with generated code in target language or runtime |\n| ❌  | typescript      | antlr: error(134): TypeScriptLexer.g4:150:0: symbol String conflicts with generated code in target language or runtime |\n| ❌  | ucblogo         | build: ucblogo/ucblogo_parser.go:14:14: expected 'STRING', found '.'        |\n| ❌  | url             | antlr: error(134): url.g4:96:18: symbol string conflicts with generated code in target language or runtime |\n| ❌  | v               | build: v/v_parser.go:419:23: syntax error: unexpected ==, expecting name    |\n| ❌  | visualbasic6    | test: FAIL                                                                  |\n| ❌  | vtl             | build: vtl/vtl_lexer.go:700:14: this._input undefined (type *VTLLexer has no field or method _input) |\n| ❌  | xdr             | test: FAIL                                                                  |\n| ❌  | xpath           | build: \t/Users/bramp/personal/antlr4-grammars/xpath/xpath_parser.go:3574:6: previous declaration |\n| ❌  | xpath20         | build: xpath20/xpath20_parser.go:11259:2: syntax error: unexpected default, expecting : |\n| ❌  | xpath31         | build: xpath31/xpath31_parser.go:17223:2: syntax error: unexpected default, expecting : |\n| ❌  | z               | build: z/z_lexer.go:1266:2: syntax error: non-declaration statement outside function body |\n\nThe failures are broken down like so:\n\n* **antlr** - ANTLR failed to generate Go code from the grammar.\n* **build** - The generated Go code failed to build.\n* **test**  - The generated Go code failed the unit tests for that language.\n\nIf you wish to help fix the situation then please submit fixes back to the [ANTLR Go target](https://github.com/antlr/antlr4/blob/master/tool/src/org/antlr/v4/codegen/target/GoTarget.java), or the [Gramamers Github Repo](https://github.com/antlr/grammars-v4).\n\n# Build\n\nThe grammars above are ready to use, but if you wish to change them, or build them yourself for any reason just run:\n\n```bash\nmake \u003cname of grammar\u003e\n```\n\n## To update all the grammars\n\n```bash\n# Fetch the latest set of grammars\ngit submodule init\ngit submodule update\ngit submodule foreach git pull origin master\n\n# Run make and all the magic will happen\nmake\n\n# Update the table in the README.md with the output\n```\n\n## Licence (Apache 2)\n\nEach grammar has its [own licence](https://github.com/antlr/grammars-v4#license), but the compiled code is licenced under Apache 2.\n\n*This is not an official Google product (experimental or otherwise), it is just code that happens to be owned by Google.*\n\n```\nCopyright 2017 Google Inc.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n    https://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbramp%2Fantlr4-grammars","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbramp%2Fantlr4-grammars","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbramp%2Fantlr4-grammars/lists"}