Class: Solargraph::SourceMap::NodeProcessor::BlockNode

Inherits:
Base
  • Object
show all
Defined in:
lib/solargraph/source_map/node_processor/block_node.rb

Instance Attribute Summary

Attributes inherited from Base

#node, #pins, #region

Instance Method Summary collapse

Methods inherited from Base

#initialize

Methods included from Solargraph::Source::NodeMethods

const_from, drill_signature, get_node_end_position, get_node_start_position, infer_literal_node_type, pack_name, resolve_node_signature, returns_from, unpack_name

Constructor Details

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

Instance Method Details

#processObject



5
6
7
8
9
10
# File 'lib/solargraph/source_map/node_processor/block_node.rb', line 5

def process
  here = get_node_start_position(node)
  named_path = named_path_pin(here)
  pins.push Solargraph::Pin::Block.new(get_node_location(node), region.namespace, '', comments_for(node), node.children[0], named_path.context)
  process_children
end