Class: Solargraph::Parser::Rubyvm::NodeProcessors::LitNode

Inherits:
NodeProcessor::Base show all
Defined in:
lib/solargraph/parser/rubyvm/node_processors/lit_node.rb

Instance Attribute Summary

Attributes inherited from NodeProcessor::Base

#locals, #node, #pins, #region

Instance Method Summary collapse

Methods inherited from NodeProcessor::Base

#initialize

Constructor Details

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

Instance Method Details

#processObject



8
9
10
11
12
13
14
15
# File 'lib/solargraph/parser/rubyvm/node_processors/lit_node.rb', line 8

def process
  if node.children[0].is_a?(Symbol)
    pins.push Solargraph::Pin::Symbol.new(
      get_node_location(node),
      ":#{node.children[0]}"
    )
  end
end