mirror of
https://github.com/ruby/ruby.git
synced 2025-08-25 05:55:46 +02:00
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.4 of `Prism::Translation::Parser`.
|
|
class Parser34 < Parser
|
|
def version # :nodoc:
|
|
34
|
|
end
|
|
end
|
|
end
|
|
end
|