Module: RipperRubyParser::SexpHandlers Private

Included in:
SexpProcessor
Defined in:
lib/ripper_ruby_parser/sexp_handlers.rb,
lib/ripper_ruby_parser/sexp_handlers/loops.rb,
lib/ripper_ruby_parser/sexp_handlers/arrays.rb,
lib/ripper_ruby_parser/sexp_handlers/blocks.rb,
lib/ripper_ruby_parser/sexp_handlers/hashes.rb,
lib/ripper_ruby_parser/sexp_handlers/methods.rb,
lib/ripper_ruby_parser/sexp_handlers/literals.rb,
lib/ripper_ruby_parser/sexp_handlers/arguments.rb,
lib/ripper_ruby_parser/sexp_handlers/operators.rb,
lib/ripper_ruby_parser/sexp_handlers/assignment.rb,
lib/ripper_ruby_parser/sexp_handlers/conditionals.rb,
lib/ripper_ruby_parser/sexp_handlers/method_calls.rb,
lib/ripper_ruby_parser/sexp_handlers/helper_methods.rb

Overview

This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.

Umbrella module for handlers of particular sexp types

Defined Under Namespace

Modules: Arguments, Arrays, Assignment, Blocks, Conditionals, Hashes, HelperMethods, Literals, Loops, MethodCalls, Methods, Operators

Class Method Summary collapse

Class Method Details

.included(base) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# File 'lib/ripper_ruby_parser/sexp_handlers.rb', line 20

def self.included(base)
  base.class_eval do
    include HelperMethods

    include Arguments
    include Arrays
    include Assignment
    include Blocks
    include Conditionals
    include Hashes
    include Literals
    include Loops
    include MethodCalls
    include Methods
    include Operators
  end
end