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/blocks.rb,
lib/ripper_ruby_parser/sexp_handlers/methods.rb,
lib/ripper_ruby_parser/sexp_handlers/literals.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,
lib/ripper_ruby_parser/sexp_handlers/string_literals.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: Assignment, Blocks, Conditionals, HelperMethods, Literals, Loops, MethodCalls, Methods, Operators, StringLiterals
Class Method Summary collapse
- .included(base) ⇒ Object private
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 |
# 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 |