mirror of
https://github.com/ruby/ruby.git
synced 2025-09-15 08:33:58 +02:00

Follow up https://github.com/ruby/prism/pull/3336. Development for Ruby 3.5 has begun on the master branch:2f064b3b4b
aa49c1bd78
12 lines
242 B
Ruby
12 lines
242 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Prism
|
|
module Translation
|
|
# This class is the entry-point for Ruby 3.5 of `Prism::Translation::Parser`.
|
|
class Parser35 < Parser
|
|
def version # :nodoc:
|
|
35
|
|
end
|
|
end
|
|
end
|
|
end
|