summaryrefslogtreecommitdiff
path: root/lib/prism/translation.rb
blob: 31d4cd7b7f5202904e6993c53904ca280d1854b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# 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"
    autoload :Ripper, "prism/translation/ripper"
  end
end