class Prism::IfNode
表示 ‘if’ 关键字的使用,可以是块形式或修饰符形式,或者是三元表达式。
bar if foo ^^^^^^^^^^ if foo then bar end ^^^^^^^^^^^^^^^^^^^ foo ? bar : baz ^^^^^^^^^^^^^^^
属性
表示 ‘IfNode’ 正在测试的条件的节点。
if foo ^^^ bar end bar if foo ^^^ foo ? bar : baz ^^^
表示当谓词评估为真时将执行的语句主体。当没有提供主体时,将为 ‘nil’。
if foo bar ^^^ baz ^^^ end
当 ‘if’ 语句中存在 ‘else’ 或 ‘elsif’ 时,表示 ‘ElseNode’ 或 ‘IfNode’。
if foo bar elsif baz ^^^^^^^^^ qux ^^^ end ^^^ if foo then bar else baz end ^^^^^^^^^^^^
公共类方法
源
# File lib/prism/node.rb, line 8447 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
初始化一个新的 IfNode
节点。
源
# File lib/prism/node.rb, line 8635 def self.type :if_node end
返回此节点类型的符号表示形式。请参阅 ‘Node::type’。
公共实例方法
源
# File lib/prism/node.rb, line 8641 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
实现节点的 case-equality。这实际上是 ==,但不比较位置的值。仅检查是否存在位置。
源
# File lib/prism/node.rb, line 8461 def accept(visitor) visitor.visit_if_node(self) end
def accept: (Visitor
visitor) -> void
源
# File lib/prism/node.rb, line 8466 def child_nodes [predicate, statements, subsequent] end
def child_nodes
: () -> Array[nil | Node]
源
# File lib/prism/node.rb, line 8480 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]
源
# File lib/prism/node.rb, line 8471 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
源
# File lib/prism/node_ext.rb, line 485 def consequent deprecated("subsequent") subsequent end
返回 if 节点的后续 if/elsif/else 子句。此方法已弃用,建议使用 subsequent
。
源
# File lib/prism/node.rb, line 8485 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
def copy: (?node_id: Integer
, ?location: Location
, ?flags: Integer
, ?if_keyword_loc: Location
?, ?predicate: Prism::node, ?then_keyword_loc: Location
?, ?statements: StatementsNode
?, ?subsequent: ElseNode
| IfNode
| nil, ?end_keyword_loc: Location
?) -> IfNode
源
# File lib/prism/node.rb, line 8493 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
? }
源
# File lib/prism/node.rb, line 8620 def end_keyword end_keyword_loc&.slice end
def end_keyword
: () -> String
?
源
# File lib/prism/node.rb, line 8591 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
如果存在 ‘end’ 关键字,则返回其位置,否则返回 `nil`。
if foo bar end ^^^
源
# File lib/prism/node.rb, line 8610 def if_keyword if_keyword_loc&.slice end
def if_keyword
: () -> String
?
源
# File lib/prism/node.rb, line 8503 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
如果存在 ‘if’ 关键字,则返回其位置。
bar if foo ^^
当 ‘IfNode’ 表示三元表达式时,‘if_keyword_loc’ 字段将为 ‘nil’。
源
# File lib/prism/node.rb, line 8625 def inspect InspectVisitor.compose(self) end
def inspect -> String
源
# File lib/prism/node.rb, line 8605 def save_end_keyword_loc(repository) repository.enter(node_id, :end_keyword_loc) unless @end_keyword_loc.nil? end
使用给定的已保存源保存 end_keyword_loc
位置,以便稍后检索。
源
# File lib/prism/node.rb, line 8517 def save_if_keyword_loc(repository) repository.enter(node_id, :if_keyword_loc) unless @if_keyword_loc.nil? end
使用给定的已保存源保存 if_keyword_loc
位置,以便稍后检索。
源
# File lib/prism/node.rb, line 8556 def save_then_keyword_loc(repository) repository.enter(node_id, :then_keyword_loc) unless @then_keyword_loc.nil? end
使用给定的已保存源保存 then_keyword_loc
位置,以便稍后检索。
源
# File lib/prism/node.rb, line 8615 def then_keyword then_keyword_loc&.slice end
def then_keyword
: () -> String
?
源
# File lib/prism/node.rb, line 8542 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
如果存在 ‘then’ 关键字,则返回其位置;或者在三元表达式中返回 ‘?’ 的位置,否则返回 `nil`。
if foo then bar end ^^^^ a ? b : c ^