Class: Prism::UntilNode

Inherits:
PrismNode
  • Object
show all
Defined in:
lib/prism/node.rb,
lib/prism/parse_result/newlines.rb,
ext/prism/api_node.c

Overview

Represents the use of the ‘until` keyword, either in the block form or the modifier form.

bar until foo
^^^^^^^^^^^^^

until foo do bar end
^^^^^^^^^^^^^^^^^^^^

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source, node_id, location, flags, keyword_loc, do_keyword_loc, closing_loc, predicate, statements) ⇒ UntilNode

Initialize a new UntilNode node.



17722
17723
17724
17725
17726
17727
17728
17729
17730
17731
17732
# File 'lib/prism/node.rb', line 17722

def initialize(source, node_id, location, flags, keyword_loc, do_keyword_loc, closing_loc, predicate, statements)
  @source = source
  @node_id = node_id
  @location = location
  @flags = flags
  @keyword_loc = keyword_loc
  @do_keyword_loc = do_keyword_loc
  @closing_loc = closing_loc
  @predicate = predicate
  @statements = statements
end

Instance Attribute Details

#predicateObject (readonly)

attr_reader predicate: Prism::node



17827
17828
17829
# File 'lib/prism/node.rb', line 17827

def predicate
  @predicate
end

#statementsObject (readonly)

attr_reader statements: StatementsNode?



17830
17831
17832
# File 'lib/prism/node.rb', line 17830

def statements
  @statements
end

Class Method Details

.typeObject

Return a symbol representation of this node type. See ‘Node::type`.



17858
17859
17860
# File 'lib/prism/node.rb', line 17858

def self.type
  :until_node
end

Instance Method Details

#===(other) ⇒ Object

Implements case-equality for the node. This is effectively == but without comparing the value of locations. Locations are checked only for presence.



17864
17865
17866
17867
17868
17869
17870
17871
17872
# File 'lib/prism/node.rb', line 17864

def ===(other)
  other.is_a?(UntilNode) &&
    (flags === other.flags) &&
    (keyword_loc.nil? == other.keyword_loc.nil?) &&
    (do_keyword_loc.nil? == other.do_keyword_loc.nil?) &&
    (closing_loc.nil? == other.closing_loc.nil?) &&
    (predicate === other.predicate) &&
    (statements === other.statements)
end

#accept(visitor) ⇒ Object

def accept: (Visitor visitor) -> void



17735
17736
17737
# File 'lib/prism/node.rb', line 17735

def accept(visitor)
  visitor.visit_until_node(self)
end

#begin_modifier?Boolean

def begin_modifier?: () -> bool

Returns:

  • (Boolean)


17771
17772
17773
# File 'lib/prism/node.rb', line 17771

def begin_modifier?
  flags.anybits?(LoopFlags::BEGIN_MODIFIER)
end

#child_nodesObject Also known as: deconstruct

def child_nodes: () -> Array[nil | Node]



17740
17741
17742
# File 'lib/prism/node.rb', line 17740

def child_nodes
  [predicate, statements]
end

#closingObject

def closing: () -> String?



17843
17844
17845
# File 'lib/prism/node.rb', line 17843

def closing
  closing_loc&.slice
end

#closing_locObject

attr_reader closing_loc: Location?



17808
17809
17810
17811
17812
17813
17814
17815
17816
17817
17818
# File 'lib/prism/node.rb', line 17808

def closing_loc
  location = @closing_loc
  case location
  when nil
    nil
  when Location
    location
  else
    @closing_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF)
  end
end

#comment_targetsObject

def comment_targets: () -> Array[Node | Location]



17753
17754
17755
# File 'lib/prism/node.rb', line 17753

def comment_targets
  [keyword_loc, *do_keyword_loc, *closing_loc, predicate, *statements] #: Array[Prism::node | Location]
end

#compact_child_nodesObject

def compact_child_nodes: () -> Array



17745
17746
17747
17748
17749
17750
# File 'lib/prism/node.rb', line 17745

def compact_child_nodes
  compact = [] #: Array[Prism::node]
  compact << predicate
  compact << statements if statements
  compact
end

#copy(node_id: self.node_id, location: self.location, flags: self.flags, keyword_loc: self.keyword_loc, do_keyword_loc: self.do_keyword_loc, closing_loc: self.closing_loc, predicate: self.predicate, statements: self.statements) ⇒ Object

def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?keyword_loc: Location, ?do_keyword_loc: Location?, ?closing_loc: Location?, ?predicate: Prism::node, ?statements: StatementsNode?) -> UntilNode



17758
17759
17760
# File 'lib/prism/node.rb', line 17758

def copy(node_id: self.node_id, location: self.location, flags: self.flags, keyword_loc: self.keyword_loc, do_keyword_loc: self.do_keyword_loc, closing_loc: self.closing_loc, predicate: self.predicate, statements: self.statements)
  UntilNode.new(source, node_id, location, flags, keyword_loc, do_keyword_loc, closing_loc, predicate, statements)
end

#deconstruct_keys(keys) ⇒ Object

def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, keyword_loc: Location, do_keyword_loc: Location?, closing_loc: Location?, predicate: Prism::node, statements: StatementsNode? }



17766
17767
17768
# File 'lib/prism/node.rb', line 17766

def deconstruct_keys(keys)
  { node_id: node_id, location: location, keyword_loc: keyword_loc, do_keyword_loc: do_keyword_loc, closing_loc: closing_loc, predicate: predicate, statements: statements }
end

#do_keywordObject

def do_keyword: () -> String?



17838
17839
17840
# File 'lib/prism/node.rb', line 17838

def do_keyword
  do_keyword_loc&.slice
end

#do_keyword_locObject

attr_reader do_keyword_loc: Location?



17789
17790
17791
17792
17793
17794
17795
17796
17797
17798
17799
# File 'lib/prism/node.rb', line 17789

def do_keyword_loc
  location = @do_keyword_loc
  case location
  when nil
    nil
  when Location
    location
  else
    @do_keyword_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF)
  end
end

#inspectObject

def inspect -> String



17848
17849
17850
# File 'lib/prism/node.rb', line 17848

def inspect
  InspectVisitor.compose(self)
end

#keywordObject

def keyword: () -> String



17833
17834
17835
# File 'lib/prism/node.rb', line 17833

def keyword
  keyword_loc.slice
end

#keyword_locObject

attr_reader keyword_loc: Location



17776
17777
17778
17779
17780
# File 'lib/prism/node.rb', line 17776

def keyword_loc
  location = @keyword_loc
  return location if location.is_a?(Location)
  @keyword_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF)
end

#newline_flag!(lines) ⇒ Object

:nodoc:



103
104
105
# File 'lib/prism/parse_result/newlines.rb', line 103

def newline_flag!(lines) # :nodoc:
  predicate.newline_flag!(lines)
end

#save_closing_loc(repository) ⇒ Object

Save the closing_loc location using the given saved source so that it can be retrieved later.



17822
17823
17824
# File 'lib/prism/node.rb', line 17822

def save_closing_loc(repository)
  repository.enter(node_id, :closing_loc) unless @closing_loc.nil?
end

#save_do_keyword_loc(repository) ⇒ Object

Save the do_keyword_loc location using the given saved source so that it can be retrieved later.



17803
17804
17805
# File 'lib/prism/node.rb', line 17803

def save_do_keyword_loc(repository)
  repository.enter(node_id, :do_keyword_loc) unless @do_keyword_loc.nil?
end

#save_keyword_loc(repository) ⇒ Object

Save the keyword_loc location using the given saved source so that it can be retrieved later.



17784
17785
17786
# File 'lib/prism/node.rb', line 17784

def save_keyword_loc(repository)
  repository.enter(node_id, :keyword_loc)
end

#typeObject

Return a symbol representation of this node type. See ‘Node#type`.



17853
17854
17855
# File 'lib/prism/node.rb', line 17853

def type
  :until_node
end