summaryrefslogtreecommitdiff
path: root/lib/prism/translation/parser33.rb
blob: b09266e06a43afb7f71486477a81c3ba703b4093 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

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
  end
end