class Solargraph::Parser::Rubyvm::NodeProcessors::SendNode

def process_include

Returns:
  • (void) -
def process_include
  return unless Parser.is_ast_node?(node.children.last)
  node.children.last.children[0..-2].each do |i|
    next unless [:COLON2, :COLON3, :CONST].include?(i.type)
    pins.push Pin::Reference::Include.new(
      location: get_node_location(i),
      closure: region.closure,
      name: unpack_name(i)
    )
  end
end