Class: Solargraph::Parser::Legacy::NodeProcessors::LvasgnNode

Inherits:
NodeProcessor::Base show all
Includes:
Solargraph::Parser::Legacy::NodeMethods
Defined in:
lib/solargraph/parser/legacy/node_processors/lvasgn_node.rb

Constant Summary

Constants included from Solargraph::Parser::Legacy::NodeMethods

Solargraph::Parser::Legacy::NodeMethods::NIL_NODE

Instance Attribute Summary

Attributes inherited from NodeProcessor::Base

#locals, #node, #pins, #region

Instance Method Summary collapse

Methods included from Solargraph::Parser::Legacy::NodeMethods

call_nodes_from, const_nodes_from, convert_hash, drill_signature, find_recipient_node, get_node_end_position, get_node_start_position, infer_literal_node_type, pack_name, returns_from, splatted_call?, splatted_hash?, unpack_name

Methods inherited from NodeProcessor::Base

#initialize

Constructor Details

This class inherits a constructor from Solargraph::Parser::NodeProcessor::Base

Instance Method Details

#processObject



10
11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'lib/solargraph/parser/legacy/node_processors/lvasgn_node.rb', line 10

def process
  here = get_node_start_position(node)
  presence = Range.new(here, region.closure.location.range.ending)
  loc = get_node_location(node)
  locals.push Solargraph::Pin::LocalVariable.new(
    location: loc,
    closure: region.closure,
    name: node.children[0].to_s,
    assignment: node.children[1],
    comments: comments_for(node),
    presence: presence
  )
  process_children
end