class Prism::WhileNode

表示使用 `while` 关键字,可以是块形式或修饰符形式。

bar while foo
^^^^^^^^^^^^^

while foo do bar end
^^^^^^^^^^^^^^^^^^^^

属性

predicate[R]

attr_reader predicate: Prism::node

statements[R]

attr_reader statements: StatementsNode?

公共类方法

new(source, node_id, location, flags, keyword_loc, do_keyword_loc, closing_loc, predicate, statements) 点击以切换源代码

初始化一个新的 WhileNode 节点。

# File prism/node.rb, line 17982
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
type() 点击以切换源代码

返回此节点类型的符号表示。请参阅 `Node::type`。

# File prism/node.rb, line 18118
def self.type
  :while_node
end

公共实例方法

===(other) 点击以切换源代码

实现节点的 case-equality。这实际上是 ==,但不比较位置的值。位置仅检查是否存在。

# File prism/node.rb, line 18124
def ===(other)
  other.is_a?(WhileNode) &&
    (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) 点击以切换源代码

def accept: (Visitor visitor) -> void

# File prism/node.rb, line 17995
def accept(visitor)
  visitor.visit_while_node(self)
end
begin_modifier?() 点击以切换源代码

def begin_modifier?: () -> bool

# File prism/node.rb, line 18031
def begin_modifier?
  flags.anybits?(LoopFlags::BEGIN_MODIFIER)
end
child_nodes() 点击以切换源代码

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

# File prism/node.rb, line 18000
def child_nodes
  [predicate, statements]
end
也别名为:deconstruct
closing() 点击以切换源代码

def closing: () -> String?

# File prism/node.rb, line 18103
def closing
  closing_loc&.slice
end
closing_loc() 点击以切换源代码

attr_reader closing_loc: Location?

# File prism/node.rb, line 18068
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_targets() 点击以切换源代码

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

# File prism/node.rb, line 18013
def comment_targets
  [keyword_loc, *do_keyword_loc, *closing_loc, predicate, *statements] #: Array[Prism::node | Location]
end
compact_child_nodes() 点击以切换源代码

def compact_child_nodes: () -> Array

# File prism/node.rb, line 18005
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) 点击以切换源代码

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

# File prism/node.rb, line 18018
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)
  WhileNode.new(source, node_id, location, flags, keyword_loc, do_keyword_loc, closing_loc, predicate, statements)
end
deconstruct()

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

别名为:child_nodes
deconstruct_keys(keys) 点击以切换源代码

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

# File prism/node.rb, line 18026
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_keyword() 点击以切换源代码

def do_keyword: () -> String?

# File prism/node.rb, line 18098
def do_keyword
  do_keyword_loc&.slice
end
do_keyword_loc() 点击以切换源代码

attr_reader do_keyword_loc: Location?

# File prism/node.rb, line 18049
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
inspect() 点击以切换源代码

def inspect -> String

# File prism/node.rb, line 18108
def inspect
  InspectVisitor.compose(self)
end
keyword() 点击以切换源代码

def keyword: () -> String

# File prism/node.rb, line 18093
def keyword
  keyword_loc.slice
end
keyword_loc() 点击以切换源代码

attr_reader keyword_loc: Location

# File prism/node.rb, line 18036
def keyword_loc
  location = @keyword_loc
  return location if location.is_a?(Location)
  @keyword_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF)
end
save_closing_loc(repository) 点击以切换源代码

使用给定的已保存源保存 closing_loc 位置,以便稍后检索。

# File prism/node.rb, line 18082
def save_closing_loc(repository)
  repository.enter(node_id, :closing_loc) unless @closing_loc.nil?
end
save_do_keyword_loc(repository) 点击以切换源代码

使用给定的已保存源保存 do_keyword_loc 位置,以便稍后检索。

# File prism/node.rb, line 18063
def save_do_keyword_loc(repository)
  repository.enter(node_id, :do_keyword_loc) unless @do_keyword_loc.nil?
end
save_keyword_loc(repository) 点击以切换源代码

使用给定的已保存源保存 keyword_loc 位置,以便稍后检索。

# File prism/node.rb, line 18044
def save_keyword_loc(repository)
  repository.enter(node_id, :keyword_loc)
end
type() 点击以切换源代码

返回此节点类型的符号表示。请参阅 `Node#type`。

# File prism/node.rb, line 18113
def type
  :while_node
end