module SyntaxTree::Translation

def self.to_parser(node, buffer)

because it's not required for the core functionality of Syntax Tree.
the whitequark/parser gem. We don't explicitly list it as a dependency
This method translates the given node into the representation defined by
def self.to_parser(node, buffer)
  require "parser"
  require_relative "translation/parser"
  node.accept(Parser.new(buffer))
end