From: "kddnewton (Kevin Newton) via ruby-core" <ruby-core@ml.ruby-lang.org>
To: ruby-core@ml.ruby-lang.org
Cc: "kddnewton (Kevin Newton)" <noreply@ruby-lang.org>
Subject: [ruby-core:118247] [Ruby master Feature#20564] Switch default parser to Prism
Date: Fri, 07 Jun 2024 20:40:15 +0000 (UTC) [thread overview]
Message-ID: <redmine.journal-108745.20240607204014.10206@ruby-lang.org> (raw)
In-Reply-To: <redmine.issue-20564.20240607164249.10206@ruby-lang.org>
Issue #20564 has been updated by kddnewton (Kevin Newton).
Ah, thank you @hsbt. We of course will not merge this until we are sure it is passing 100% of the tests. I think we will likely discover other things as well when we switch the default (before we merge), which is of course what we're looking for!
----------------------------------------
Feature #20564: Switch default parser to Prism
https://bugs.ruby-lang.org/issues/20564#change-108745
* Author: kddnewton (Kevin Newton)
* Status: Open
----------------------------------------
This issue is to propose switching the default parser for Ruby to Prism on the master branch. The main goal is to get this default into both master and the next preview so that the community has plenty of time to test before the eventual 3.4 release.
Matz has indicated that the final decision about the default parser for Ruby 3.4 will be made later in the year. Decisions about the default parser for Ruby 3.5+ and the relationship between Prism, lrama, parse.y, etc. will also be made at a later time.
## Background
For some background on the Prism project itself, here are a couple of links in chronological order that you can read:
* https://bugs.ruby-lang.org/issues/19741
* https://railsatscale.com/2023-06-12-rewriting-the-ruby-parser/
* https://kddnewton.com/2024/01/23/prism.html
* https://railsatscale.com/2024-04-16-prism-in-2024/
## Status
Prism now passes all Ruby tests and specs. Internally at Shopify, it also passes our Core monolith's CI, which is a large and complex Rails application. We are confident that it is ready for production use. External to CRuby, Prism has already been adopted extensively around the ecosystem, including but not limited to:
* [JRuby](https://github.com/jruby/jruby/pull/8103) (via Java)
* [TruffleRuby](https://github.com/oracle/truffleruby/issues/3117) (via Java)
* [Natalie](https://github.com/natalie-lang/natalie/pull/1213) (via C++ and Ruby)
* [Opal](https://github.com/opal/opal/pull/2642) (via Ruby and WASM)
* [repl_type_completor](https://github.com/ruby/repl_type_completor)
* [rubocop](https://docs.rubocop.org/rubocop/configuration.html#setting-the-parser-engine) (via parser translator)
* [ruby-lsp](https://github.com/Shopify/ruby-lsp)
* [packwerk](https://github.com/Shopify/packwerk/pull/388) (via parser translator)
Fortunately with the community adoption, we have been able to find many edge cases and bugs that have been fixed. Thank you so much to everyone who has tried, used, reported problems with, and improved Prism in the last couple of years. We would not have hit this milestone without this community involvement.
## Caveats
While Prism correctly accepts and parses all valid Ruby syntax, there are still a number of cases where it does not reject invalid syntax as it should. We are currently working on these cases, and we are confident that we can eliminate them before the next preview release. You can find them listed here: https://github.com/ruby/prism/issues?q=is%3Aopen+is%3Aissue+label%3Ainvalid-syntax. This is our top priority right now, and I anticipate these being resolved quickly.
The other caveat is unknown unknowns: bugs or syntax issues that we have yet to discover. At Shopify we are currently taking numerous steps to mitigate this risk, including:
* Prism currently passes all Ruby tests and specs, and will continue to going forward. The tests and specs are extensive, and we are confident this gets us almost all of the way there.
* Grammar-based fuzzing to ensure we handle all possible syntax variations (both valid and invalid). As an example, that recently led to the discovery that the current compiler was segfaulting on safe navigation in for loops (https://bugs.ruby-lang.org/issues/20468). It has also found several memory leaks that have been fixed.
* Mutation testing of existing source files (by adding and deleting random bytes) to find additional edge cases.
Our goal is 100% compatibility, and we believe this is achievable through the above techniques and others. The goal of this proposal is to allow more companies to test their codebase against Prism, and to make this easier. We believe that we can sort out the remaining problems much more quickly in that manner.
## Implementation
The implementation will be relatively straightforward, as there is already the `--parser` flag that can be used to switch between the current parser and Prism. We will change the default to be `"prism"` instead of `"parse.y"`. There is no plan to remove or change any code related to `parse.y`, `lrama`, or `compile.c` at this time, as we want to create the minimal amount of change possible to ensure stability.
--
https://bugs.ruby-lang.org/
next prev parent reply other threads:[~2024-06-07 20:41 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-07 16:42 [ruby-core:118243] " kddnewton (Kevin Newton) via ruby-core
2024-06-07 20:34 ` [ruby-core:118246] " hsbt (Hiroshi SHIBATA) via ruby-core
2024-06-07 20:40 ` kddnewton (Kevin Newton) via ruby-core [this message]
2024-06-08 2:33 ` [ruby-core:118249] " kddnewton (Kevin Newton) via ruby-core
2024-06-13 4:28 ` [ruby-core:118311] " matz (Yukihiro Matsumoto) via ruby-core
2024-06-25 2:29 ` [ruby-core:118386] " hsbt (Hiroshi SHIBATA) via ruby-core
2024-09-12 17:43 ` [ruby-core:119141] " kddnewton (Kevin Newton) via ruby-core
2024-09-12 21:36 ` [ruby-core:119149] " hsbt (Hiroshi SHIBATA) via ruby-core
2024-12-24 7:30 ` [ruby-core:120392] " naruse (Yui NARUSE) via ruby-core
2024-12-24 14:41 ` [ruby-core:120396] " kddnewton (Kevin Newton) via ruby-core
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=redmine.journal-108745.20240607204014.10206@ruby-lang.org \
--to=ruby-core@ml.ruby-lang.org \
--cc=noreply@ruby-lang.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).