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.



19006
19007
19008
19009
19010
19011
19012
19013
19014
19015
19016
# File 'lib/prism/node.rb', line 19006

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



19119
19120
19121
# File 'lib/prism/node.rb', line 19119

def predicate
  @predicate
end

#statementsObject (readonly)

attr_reader statements: StatementsNode?



19122
19123
19124
# File 'lib/prism/node.rb', line 19122

def statements
  @statements
end

Class Method Details

.typeObject

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



19150
19151
19152
# File 'lib/prism/node.rb', line 19150

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.



19156
19157
19158
19159
19160
19161
19162
19163
19164
# File 'lib/prism/node.rb', line 19156

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



19019
19020
19021
# File 'lib/prism/node.rb', line 19019

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

#begin_modifier?Boolean

def begin_modifier?: () -> bool



19063
19064
19065
# File 'lib/prism/node.rb', line 19063

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

#child_nodesObject Also known as: deconstruct

def child_nodes: () -> Array



19024
19025
19026
# File 'lib/prism/node.rb', line 19024

def child_nodes
  [predicate, statements]
end

#closingObject

def closing: () -> String?



19135
19136
19137
# File 'lib/prism/node.rb', line 19135

def closing
  closing_loc&.slice
end

#closing_locObject

attr_reader closing_loc: Location?



19100
19101
19102
19103
19104
19105
19106
19107
19108
19109
19110
# File 'lib/prism/node.rb', line 19100

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]



19045
19046
19047
# File 'lib/prism/node.rb', line 19045

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



19037
19038
19039
19040
19041
19042
# File 'lib/prism/node.rb', line 19037

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



19050
19051
19052
# File 'lib/prism/node.rb', line 19050

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? }



19058
19059
19060
# File 'lib/prism/node.rb', line 19058

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?



19130
19131
19132
# File 'lib/prism/node.rb', line 19130

def do_keyword
  do_keyword_loc&.slice
end

#do_keyword_locObject

attr_reader do_keyword_loc: Location?



19081
19082
19083
19084
19085
19086
19087
19088
19089
19090
19091
# File 'lib/prism/node.rb', line 19081

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

#each_child_node {|predicate| ... } ⇒ Object

def each_child_node: () { (Prism::node) -> void } -> void | () -> Enumerator

Yields:



19029
19030
19031
19032
19033
19034
# File 'lib/prism/node.rb', line 19029

def each_child_node
  return to_enum(:each_child_node) unless block_given?

  yield predicate
  yield statements if statements
end

#inspectObject

def inspect -> String



19140
19141
19142
# File 'lib/prism/node.rb', line 19140

def inspect
  InspectVisitor.compose(self)
end

#keywordObject

def keyword: () -> String



19125
19126
19127
# File 'lib/prism/node.rb', line 19125

def keyword
  keyword_loc.slice
end

#keyword_locObject

attr_reader keyword_loc: Location



19068
19069
19070
19071
19072
# File 'lib/prism/node.rb', line 19068

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:



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

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.



19114
19115
19116
# File 'lib/prism/node.rb', line 19114

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.



19095
19096
19097
# File 'lib/prism/node.rb', line 19095

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.



19076
19077
19078
# File 'lib/prism/node.rb', line 19076

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

#typeObject

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



19145
19146
19147
# File 'lib/prism/node.rb', line 19145

def type
  :until_node
end