diff options
author | tomoya ishida <[email protected]> | 2023-11-23 05:29:47 +0900 |
---|---|---|
committer | git <[email protected]> | 2023-11-22 20:29:51 +0000 |
commit | 8d6175bf64748eb646a83c74ff7bd541fdec166d (patch) | |
tree | 7d3bce00d59a199dcb766c742662f6ff8862603d /lib/irb/context.rb | |
parent | 7a93bee4f845f496742b03a0e575ed13631971b7 (diff) |
[ruby/irb] Require prism >= 0.18.0 (MatchWriteNode#targets and
CaseMatchNode)
(https://github.com/ruby/irb/pull/778)
https://github.com/ruby/irb/commit/943c14b12e
Diffstat (limited to 'lib/irb/context.rb')
-rw-r--r-- | lib/irb/context.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/irb/context.rb b/lib/irb/context.rb index 5dfe9d0d71..a7b8ca2c26 100644 --- a/lib/irb/context.rb +++ b/lib/irb/context.rb @@ -164,7 +164,7 @@ module IRB RegexpCompletor.new end - TYPE_COMPLETION_REQUIRED_PRISM_VERSION = '0.17.1' + TYPE_COMPLETION_REQUIRED_PRISM_VERSION = '0.18.0' private def build_type_completor unless Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('3.0.0') && RUBY_ENGINE != 'truffleruby' |