Sha256: 1816bea7dcd80572a5e5369a74f99c7dd36ddc70425c8f15c9867e63e6588aae
Contents?: true
Size: 1.89 KB
Versions: 1
Compression:
Stored size: 1.89 KB
Contents
require_relative 'code_context' require_relative 'object_refs' module Reek module Core # # The parameters in a method's definition. # module MethodParameters def default_assignments result = [] each do |exp| result << exp[1..2] if exp.optional_argument? end result end end # # A context wrapper for any method definition found in a syntax tree. # class MethodContext < CodeContext attr_reader :parameters attr_reader :refs attr_reader :num_statements def initialize(outer, exp) super(outer, exp) @parameters = exp.parameters.dup @parameters.extend MethodParameters @num_statements = 0 @refs = ObjectRefs.new end def count_statements(num) @num_statements += num end def record_call_to(exp) receiver, meth = exp[1..2] receiver ||= [:self] case receiver[0] when :lvasgn @refs.record_reference_to(receiver.name) when :lvar @refs.record_reference_to(receiver.name) unless meth == :new when :self @refs.record_reference_to(:self) end end def record_use_of_self @refs.record_reference_to(:self) end def envious_receivers return [] if @refs.self_is_max? @refs.max_keys end def references_self? exp.depends_on_instance? end def uses_param?(param) local_nodes(:lvar).find { |node| node.var_name == param.to_sym } end def unused_params exp.arguments.select do |param| next if param.anonymous_splat? next if param.marked_unused? !uses_param? param.plain_name end end def uses_super_with_implicit_arguments? (body = exp.body) && body.contains_nested_node?(:zsuper) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
reek-2.1.0 | lib/reek/core/method_context.rb |