summaryrefslogtreecommitdiff
path: root/lib/prism/translation/parser_versions.rb
blob: 720c7d548cbdc8d238dddb79b3486af860d158e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# frozen_string_literal: true
# :markup: markdown

module Prism
  module Translation
    # This class is the entry-point for Ruby 3.3 of `Prism::Translation::Parser`.
    class Parser33 < Parser
      def version # :nodoc:
        33
      end
    end

    # This class is the entry-point for Ruby 3.4 of `Prism::Translation::Parser`.
    class Parser34 < Parser
      def version # :nodoc:
        34
      end
    end

    # This class is the entry-point for Ruby 4.0 of `Prism::Translation::Parser`.
    class Parser40 < Parser
      def version # :nodoc:
        40
      end
    end

    Parser35 = Parser40 # :nodoc:

    # This class is the entry-point for Ruby 4.1 of `Prism::Translation::Parser`.
    class Parser41 < Parser
      def version # :nodoc:
        41
      end
    end
  end
end