8000 [DOC] NEWS entries for Parser by yui-knk · Pull Request #9316 · ruby/ruby · GitHub
[go: up one dir, main page]

Skip to content

[DOC] NEWS entries for Parser #9316

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 22, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -346,6 +346,15 @@ changelog for details of the default gems or bundled gems.

## Implementation improvements

### Parser

* Replace Bison with [Lrama LALR parser generator](https://github.com/ruby/lrama).
No need to install Bison to build Ruby from source code anymore.
We will no longer suffer bison compatibility issues and we can use new features by just implementing it to Lrama. [[Feature #19637]]
* See [The future vision of Ruby Parser](https://rubykaigi.org/2023/presentations/spikeolaf.html) for detail.
* Lrama internal parser is a LR parser generated by Racc for maintainability.
* Parameterizing Rules `(?, *, +)` are supported, it will be used in Ruby parse.y.

### GC / Memory management

* Major performance improvements over Ruby 3.2
Expand Down Expand Up @@ -476,6 +485,7 @@ changelog for details of the default gems or bundled gems.
[Feature #19572]: https://bugs.ruby-lang.org/issues/19572
[Feature #19591]: https://bugs.ruby-lang.org/issues/19591
[Feature #19630]: https://bugs.ruby-lang.org/issues/19630
[Feature #19637]: https://bugs.ruby-lang.org/issues/19637
[Feature #19678]: https://bugs.ruby-lang.org/issues/19678
[Feature #19714]: https://bugs.ruby-lang.org/issues/19714
[Feature #19757]: https://bugs.ruby-lang.org/issues/19757
Expand Down
0