File: processor.rb

package info (click to toggle)
ruby-ast 2.4.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 144 kB
  • sloc: ruby: 423; makefile: 7
file content (12 lines) | stat: -rw-r--r-- 399 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
module AST
  # This class includes {AST::Processor::Mixin}; however, it is
  # deprecated, since the module defines all of the behaviors that
  # the processor includes.  Any new libraries should use
  # {AST::Processor::Mixin} instead of subclassing this.
  #
  # @deprecated Use {AST::Processor::Mixin} instead.
  class Processor
    require_relative 'processor/mixin'
    include Mixin
  end
end