mirror of
https://github.com/ruby/ruby.git
synced 2025-08-24 05:25:34 +02:00
11 lines
395 B
Ruby
11 lines
395 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Prism
|
|
# This module is responsible for converting the prism syntax tree into other
|
|
# syntax trees. At the moment it only supports converting to the
|
|
# whitequark/parser gem's syntax tree, but support is planned for the
|
|
# seattlerb/ruby_parser gem's syntax tree as well.
|
|
module Translation
|
|
autoload :Parser, "prism/translation/parser"
|
|
end
|
|
end
|