class Prism::RedoNode
表示使用 'redo' 关键字。
redo ^^^^
公共类方法
来源
# File lib/prism/node.rb, line 15177 def initialize(source, node_id, location, flags) @source = source @node_id = node_id @location = location @flags = flags end
初始化一个新的 RedoNode
节点。
来源
# File lib/prism/node.rb, line 15228 def self.type :redo_node end
返回此节点类型的符号表示。请参见 'Node::type'。
公共实例方法
来源
# File lib/prism/node.rb, line 15234 def ===(other) other.is_a?(RedoNode) end
为节点实现 case-equality。 这实际上是 ==,但不比较位置的值。仅检查是否存在位置。
来源
# File lib/prism/node.rb, line 15185 def accept(visitor) visitor.visit_redo_node(self) end
def accept: (Visitor
visitor) -> void
来源
# File lib/prism/node.rb, line 15190 def child_nodes [] end
def child_nodes
: () -> Array[nil | Node]
也别名为: deconstruct
来源
# File lib/prism/node.rb, line 15200 def comment_targets [] #: Array[Prism::node | Location] end
def comment_targets
: () -> Array[Node | Location]
来源
# File lib/prism/node.rb, line 15195 def compact_child_nodes [] end
def compact_child_nodes
: () -> Array
来源
来源
# File lib/prism/node.rb, line 15213 def deconstruct_keys(keys) { node_id: node_id, location: location } end
def deconstruct_keys
: (Array keys) -> { node_id: Integer
, location: Location
}
来源
# File lib/prism/node.rb, line 15218 def inspect InspectVisitor.compose(self) end
def inspect -> String
来源
# File lib/prism/node.rb, line 15223 def type :redo_node end
返回此节点类型的符号表示。请参见 'Node#type'。