build(deps): bump antlr4.version from 4.5.3 to 4.13.2 - #19896
Merged
Conversation
Bumps `antlr4.version` from 4.5.3 to 4.13.2. Updates `org.antlr:antlr4-runtime` from 4.5.3 to 4.13.2 - [Release notes](https://github.com/antlr/antlr4/releases) - [Changelog](https://github.com/antlr/antlr4/blob/dev/CHANGES.txt) - [Commits](antlr/antlr4@4.5.3...4.13.2) Updates `org.antlr:antlr4-coordinator` from 4.5.3 to 4.13.2 Updates `org.antlr:antlr4-maven-plugin` from 4.5.3 to 4.13.2 - [Release notes](https://github.com/antlr/antlr4/releases) - [Changelog](https://github.com/antlr/antlr4/blob/dev/CHANGES.txt) - [Commits](antlr/antlr4@4.5.3...4.13.2) --- updated-dependencies: - dependency-name: org.antlr:antlr4-runtime dependency-version: 4.13.2 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.antlr:antlr4-coordinator dependency-version: 4.13.2 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.antlr:antlr4-maven-plugin dependency-version: 4.13.2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
FrankChen021
reviewed
Aug 6, 2026
| // see: https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Double.html#valueOf(java.lang.String) | ||
| DOUBLE : 'NaN' | 'Infinity' | (LONG '.' LONG?) | (LONG EXP) | (LONG '.' LONG? EXP); | ||
| IDENTIFIER : [_$a-zA-Z][_$a-zA-Z0-9]* | '"' (ESC | ~ [\"\\])* '"'; | ||
| IDENTIFIER : [_$a-zA-Z][_$a-zA-Z0-9]* | '"' (ESC | ~ ["\\])* '"'; |
Member
There was a problem hiding this comment.
ANTLR 4.13.2 character-set syntax
The quote escapes were removed because ANTLR 4.13.2 rejects \" and \' when they appear inside lexer character sets as invalid escapes. Quotes are literal members inside [...], so this preserves the language behavior: IDENTIFIER still excludes \" and \, while STRING still excludes \' and \. The corresponding ESC rule keeps the same JSON-style escape letters and Unicode support. This is a grammar-generation compatibility fix for ANTLR 4.13.2, not a change to comment handling or the accepted expression syntax. Grammar generation and 35 ParserTest cases passed locally.
FrankChen021
approved these changes
Aug 6, 2026
FrankChen021
left a comment
Member
There was a problem hiding this comment.
This review was performed by Codex GPT-5.6-Sol model.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Bumps
antlr4.versionfrom 4.5.3 to 4.13.2.Updates
org.antlr:antlr4-runtimefrom 4.5.3 to 4.13.2Release notes
Sourced from org.antlr:antlr4-runtime's releases.
... (truncated)
Commits
cc82115[maven-release-plugin] prepare release 4.13.2b91cecfUpdate 4.13.1 -> 4.13.235ff30dUpdate release docs to say 4.13.2; rebuild XPathLexers2559349fix(javascript): fix types not being recognized for NodeNext module resolutio...e8bf978rule name 'state' conflict with Python runtime.88a0c7aSupport TypeScript bundler module resolutioncaf46b9[Python3] Replace deprecatedassertEquals()to fix py3.12 compat17f3f5eAdd include dirs direclty to cpp targetsb3bb743chore: fix error link7d4cea9Fix singleton memory leaksUpdates
org.antlr:antlr4-coordinatorfrom 4.5.3 to 4.13.2Updates
org.antlr:antlr4-maven-pluginfrom 4.5.3 to 4.13.2Release notes
Sourced from org.antlr:antlr4-maven-plugin's releases.
... (truncated)
Commits
cc82115[maven-release-plugin] prepare release 4.13.2b91cecfUpdate 4.13.1 -> 4.13.235ff30dUpdate release docs to say 4.13.2; rebuild XPathLexers2559349fix(javascript): fix types not being recognized for NodeNext module resolutio...e8bf978rule name 'state' conflict with Python runtime.88a0c7aSupport TypeScript bundler module resolutioncaf46b9[Python3] Replace deprecatedassertEquals()to fix py3.12 compat17f3f5eAdd include dirs direclty to cpp targetsb3bb743chore: fix error link7d4cea9Fix singleton memory leaksDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)