class Prism::IfNode
Stellt die Verwendung des Schlüsselworts if dar, entweder in der Blockform oder der Modifikatorform, oder einen ternären Ausdruck.
bar if foo ^^^^^^^^^^ if foo then bar end ^^^^^^^^^^^^^^^^^^^ foo ? bar : baz ^^^^^^^^^^^^^^^
Attribute
Der Knoten für die Bedingung, die von IfNode getestet wird.
if foo
^^^
bar
end
bar if foo
^^^
foo ? bar : baz
^^^
Stellt den Anweisungsblock dar, der ausgeführt wird, wenn das Prädikat als wahr ausgewertet wird. Ist nil, wenn kein Block vorhanden ist.
if foo bar ^^^ baz ^^^ end
Stellt einen ElseNode oder einen IfNode dar, wenn ein else oder ein elsif in der if-Anweisung vorhanden ist.
if foo
bar
elsif baz
^^^^^^^^^
qux
^^^
end
^^^
if foo then bar else baz end
^^^^^^^^^^^^
Öffentliche Klassenmethoden
Source
# File lib/prism/node.rb, line 8586 def initialize(source, node_id, location, flags, if_keyword_loc, predicate, then_keyword_loc, statements, subsequent, end_keyword_loc) @source = source @node_id = node_id @location = location @flags = flags @if_keyword_loc = if_keyword_loc @predicate = predicate @then_keyword_loc = then_keyword_loc @statements = statements @subsequent = subsequent @end_keyword_loc = end_keyword_loc end
Initialisiert einen neuen IfNode-Knoten.
Source
# File lib/prism/node.rb, line 8774 def self.type :if_node end
Gibt eine symbolische Darstellung dieses Knotentyps zurück. Siehe Node::type.
Öffentliche Instanzmethoden
Source
# File lib/prism/node.rb, line 8780 def ===(other) other.is_a?(IfNode) && (if_keyword_loc.nil? == other.if_keyword_loc.nil?) && (predicate === other.predicate) && (then_keyword_loc.nil? == other.then_keyword_loc.nil?) && (statements === other.statements) && (subsequent === other.subsequent) && (end_keyword_loc.nil? == other.end_keyword_loc.nil?) end
Implementiert die Fallgleichheit für den Knoten. Dies ist effektiv ==, aber ohne den Wert von Standorten zu vergleichen. Standorte werden nur auf Anwesenheit geprüft.
Source
# File lib/prism/node.rb, line 8600 def accept(visitor) visitor.visit_if_node(self) end
def accept: (Visitor visitor) -> void
Source
# File lib/prism/node.rb, line 8605 def child_nodes [predicate, statements, subsequent] end
def child_nodes: () -> Array
Source
# File lib/prism/node.rb, line 8619 def comment_targets [*if_keyword_loc, predicate, *then_keyword_loc, *statements, *subsequent, *end_keyword_loc] #: Array[Prism::node | Location] end
def comment_targets: () -> Array[Node | Location]
Source
# File lib/prism/node.rb, line 8610 def compact_child_nodes compact = [] #: Array[Prism::node] compact << predicate compact << statements if statements compact << subsequent if subsequent compact end
def compact_child_nodes: () -> Array
Source
# File lib/prism/node_ext.rb, line 488 def consequent deprecated("subsequent") subsequent end
Gibt die nachfolgende if/elsif/else-Klausel des if-Knotens zurück. Diese Methode ist zugunsten von subsequent veraltet.
Source
# File lib/prism/node.rb, line 8624 def copy(node_id: self.node_id, location: self.location, flags: self.flags, if_keyword_loc: self.if_keyword_loc, predicate: self.predicate, then_keyword_loc: self.then_keyword_loc, statements: self.statements, subsequent: self.subsequent, end_keyword_loc: self.end_keyword_loc) IfNode.new(source, node_id, location, flags, if_keyword_loc, predicate, then_keyword_loc, statements, subsequent, end_keyword_loc) end
Source
# File lib/prism/node.rb, line 8632 def deconstruct_keys(keys) { node_id: node_id, location: location, if_keyword_loc: if_keyword_loc, predicate: predicate, then_keyword_loc: then_keyword_loc, statements: statements, subsequent: subsequent, end_keyword_loc: end_keyword_loc } end
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, if_keyword_loc: Location?, predicate: Prism::node, then_keyword_loc: Location?, statements: StatementsNode?, subsequent: ElseNode | IfNode | nil, end_keyword_loc: Location? }
Source
# File lib/prism/node.rb, line 8759 def end_keyword end_keyword_loc&.slice end
def end_keyword: () -> String?
Source
# File lib/prism/node.rb, line 8730 def end_keyword_loc location = @end_keyword_loc case location when nil nil when Location location else @end_keyword_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end end
Der Speicherort des Schlüsselworts end, falls vorhanden, andernfalls nil.
if foo bar end ^^^
Source
# File lib/prism/node.rb, line 8749 def if_keyword if_keyword_loc&.slice end
def if_keyword: () -> String?
Source
# File lib/prism/node.rb, line 8642 def if_keyword_loc location = @if_keyword_loc case location when nil nil when Location location else @if_keyword_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end end
Der Speicherort des Schlüsselworts if, falls vorhanden.
bar if foo
^^
Das Feld if_keyword_loc ist nil, wenn IfNode einen ternären Ausdruck darstellt.
Source
# File lib/prism/node.rb, line 8764 def inspect InspectVisitor.compose(self) end
def inspect -> String
Source
# File lib/prism/node.rb, line 8744 def save_end_keyword_loc(repository) repository.enter(node_id, :end_keyword_loc) unless @end_keyword_loc.nil? end
Speichert den Speicherort end_keyword_loc mithilfe der angegebenen gespeicherten Quelle, damit er später abgerufen werden kann.
Source
# File lib/prism/node.rb, line 8656 def save_if_keyword_loc(repository) repository.enter(node_id, :if_keyword_loc) unless @if_keyword_loc.nil? end
Speichert den Speicherort if_keyword_loc mithilfe der angegebenen gespeicherten Quelle, damit er später abgerufen werden kann.
Source
# File lib/prism/node.rb, line 8695 def save_then_keyword_loc(repository) repository.enter(node_id, :then_keyword_loc) unless @then_keyword_loc.nil? end
Speichert den Speicherort then_keyword_loc mithilfe der angegebenen gespeicherten Quelle, damit er später abgerufen werden kann.
Source
# File lib/prism/node.rb, line 8754 def then_keyword then_keyword_loc&.slice end
def then_keyword: () -> String?
Source
# File lib/prism/node.rb, line 8681 def then_keyword_loc location = @then_keyword_loc case location when nil nil when Location location else @then_keyword_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end end
Der Speicherort des Schlüsselworts then (falls vorhanden) oder des ? in einem ternären Ausdruck, andernfalls nil.
if foo then bar end
^^^^
a ? b : c
^