class Prism::AndNode
表示使用“&&”运算符或“and”关键字。
left and right ^^^^^^^^^^^^^^
属性
表示表达式的左侧。它可以是任何[非空表达式](github.com/ruby/prism/blob/main/docs/parsing_rules.md#non-void-expression)。
left and right ^^^^ 1 && 2 ^
表示表达式的右侧。
left && right ^^^^^ 1 and 2 ^
公共类方法
初始化一个新的 AndNode
节点。
# File prism/node.rb, line 651 def initialize(source, node_id, location, flags, left, right, operator_loc) @source = source @node_id = node_id @location = location @flags = flags @left = left @right = right @operator_loc = operator_loc end
返回此节点类型的符号表示。请参阅“Node::type”。
# File prism/node.rb, line 744 def self.type :and_node end
公共实例方法
实现节点的 case-equality。这实际上是 ==,但不比较位置的值。仅检查位置是否存在。
# File prism/node.rb, line 750 def ===(other) other.is_a?(AndNode) && (left === other.left) && (right === other.right) && (operator_loc.nil? == other.operator_loc.nil?) end
def accept: (Visitor
visitor) -> void
# File prism/node.rb, line 662 def accept(visitor) visitor.visit_and_node(self) end
def child_nodes
: () -> Array[nil | Node]
# File prism/node.rb, line 667 def child_nodes [left, right] end
def comment_targets
: () -> Array[Node | Location]
# File prism/node.rb, line 677 def comment_targets [left, right, operator_loc] #: Array[Prism::node | Location] end
def compact_child_nodes
: () -> Array
# File prism/node.rb, line 672 def compact_child_nodes [left, right] end
def copy: (?node_id: Integer, ?location: Location
, ?flags: Integer, ?left: Prism::node, ?right: Prism::node, ?operator_loc: Location
) -> AndNode
# File prism/node.rb, line 682 def copy(node_id: self.node_id, location: self.location, flags: self.flags, left: self.left, right: self.right, operator_loc: self.operator_loc) AndNode.new(source, node_id, location, flags, left, right, operator_loc) end
def deconstruct_keys
: (Array keys) -> { node_id: Integer, location: Location
, left: Prism::node, right: Prism::node, operator_loc
: Location
}
# File prism/node.rb, line 690 def deconstruct_keys(keys) { node_id: node_id, location: location, left: left, right: right, operator_loc: operator_loc } end
def inspect -> String
# File prism/node.rb, line 734 def inspect InspectVisitor.compose(self) end
def operator: () -> String
# File prism/node.rb, line 729 def operator operator_loc.slice end
“and”关键字或“&&”运算符的位置。
left and right ^^^
# File prism/node.rb, line 716 def operator_loc location = @operator_loc return location if location.is_a?(Location) @operator_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end
使用给定的已保存源保存operator_loc
位置,以便稍后检索。
# File prism/node.rb, line 724 def save_operator_loc(repository) repository.enter(node_id, :operator_loc) end
返回此节点类型的符号表示。请参阅“Node#type”。
# File prism/node.rb, line 739 def type :and_node end