module RipperRubyParser::SexpHandlers

Umbrella module for handlers of particular sexp types

@api private

Public Class Methods

included(base) click to toggle source
# File lib/ripper_ruby_parser/sexp_handlers.rb, line 20
def self.included(base)
  base.class_eval do
    include HelperMethods

    include Assignment
    include Blocks
    include Conditionals
    include Literals
    include Loops
    include MethodCalls
    include Methods
    include Operators
    include StringLiterals
  end
end