Class: Solargraph::Rails::Delegate

Inherits:
Object
  • Object
show all
Defined in:
lib/solargraph/rails/delegate.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.instanceObject



4
5
6
# File 'lib/solargraph/rails/delegate.rb', line 4

def self.instance
  @instance ||= self.new
end

Instance Method Details

#process(source_map, ns) ⇒ Object



8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# File 'lib/solargraph/rails/delegate.rb', line 8

def process(source_map, ns)
  return [] unless source_map.code.include?('delegate')

  walker = Walker.from_source(source_map.source)
  pins = []

  walker.on :send, [nil, :delegate] do |ast|
    methods =
      ast.children[2..-1]
        .map { |c| c.children.first }
        .select { |s| s.is_a?(Symbol) }

    methods.each do |meth|
      pins <<
        Util.build_public_method(
          ns,
          meth.to_s,
          location: Util.build_location(ast, ns.filename)
        )
    end
  end

  walker.walk

  if pins.any?
    Solargraph.logger.debug(
      "[Rails][Delegate] added #{pins.map(&:name)} to #{ns.path}"
    )
  end

  pins
end