class Solargraph::SourceMap::NodeProcessor::Base

def process_children subregion = region

Returns:
  • (void) -

Parameters:
  • subregion (Region) --
def process_children subregion = region
  node.children.each do |child|
    next unless child.is_a?(Parser::AST::Node)
    NodeProcessor.process(child, subregion, pins, locals)
  end
end