class Solargraph::Parser::ParserGem::NodeProcessors::UntilNode
Public Instance Methods
Source
# File lib/solargraph/parser/parser_gem/node_processors/until_node.rb, line 10 def process location = get_node_location(node) # Note - this should not be considered a block, as the # until statement doesn't create a closure - e.g., # variables created inside can be seen from outside as # well pins.push Solargraph::Pin::Until.new( location: location, closure: region.closure, node: node, comments: comments_for(node), source: :parser, ) process_children region end