class Prism::ConstantPathOperatorWriteNode

表示使用非“=”的运算符赋值给常量路径。

Parent::Child += value
^^^^^^^^^^^^^^^^^^^^^^

属性

binary_operator[R]

attr_reader binary_operator: Symbol

target[R]

attr_reader target: ConstantPathNode

value[R]

attr_reader value: Prism::node

公共类方法

new(source, node_id, location, flags, target, binary_operator_loc, value, binary_operator) 点击以切换源代码

初始化一个新的 ConstantPathOperatorWriteNode 节点。

# File prism/node.rb, line 5181
def initialize(source, node_id, location, flags, target, binary_operator_loc, value, binary_operator)
  @source = source
  @node_id = node_id
  @location = location
  @flags = flags
  @target = target
  @binary_operator_loc = binary_operator_loc
  @value = value
  @binary_operator = binary_operator
end
type() 点击以切换源代码

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

# File prism/node.rb, line 5258
def self.type
  :constant_path_operator_write_node
end

公共实例方法

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

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

# File prism/node.rb, line 5264
def ===(other)
  other.is_a?(ConstantPathOperatorWriteNode) &&
    (target === other.target) &&
    (binary_operator_loc.nil? == other.binary_operator_loc.nil?) &&
    (value === other.value) &&
    (binary_operator === other.binary_operator)
end
accept(visitor) 点击以切换源代码

def accept: (Visitor visitor) -> void

# File prism/node.rb, line 5193
def accept(visitor)
  visitor.visit_constant_path_operator_write_node(self)
end
binary_operator_loc() 点击以切换源代码

attr_reader binary_operator_loc: Location

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

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

# File prism/node.rb, line 5198
def child_nodes
  [target, value]
end
别名为:deconstruct
comment_targets() 点击以切换源代码

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

# File prism/node.rb, line 5208
def comment_targets
  [target, binary_operator_loc, value] #: Array[Prism::node | Location]
end
compact_child_nodes() 点击以切换源代码

def compact_child_nodes: () -> Array

# File prism/node.rb, line 5203
def compact_child_nodes
  [target, value]
end
copy(node_id: self.node_id, location: self.location, flags: self.flags, target: self.target, binary_operator_loc: self.binary_operator_loc, value: self.value, binary_operator: self.binary_operator) 点击以切换源代码

def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?target: ConstantPathNode, ?binary_operator_loc: Location, ?value: Prism::node, ?binary_operator: Symbol) -> ConstantPathOperatorWriteNode

# File prism/node.rb, line 5213
def copy(node_id: self.node_id, location: self.location, flags: self.flags, target: self.target, binary_operator_loc: self.binary_operator_loc, value: self.value, binary_operator: self.binary_operator)
  ConstantPathOperatorWriteNode.new(source, node_id, location, flags, target, binary_operator_loc, value, binary_operator)
end
deconstruct()

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

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

def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, target: ConstantPathNode, binary_operator_loc: Location, value: Prism::node, binary_operator: Symbol }

# File prism/node.rb, line 5221
def deconstruct_keys(keys)
  { node_id: node_id, location: location, target: target, binary_operator_loc: binary_operator_loc, value: value, binary_operator: binary_operator }
end
inspect() 点击以切换源代码

def inspect -> String

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

返回用于修改接收者的二进制运算符。此方法已弃用,建议使用 binary_operator

# File prism/node_ext.rb, line 387
def operator
  deprecated("binary_operator")
  binary_operator
end
operator_loc() 点击以切换源代码

返回用于修改接收者的二进制运算符的位置。此方法已弃用,建议使用 binary_operator_loc

# File prism/node_ext.rb, line 394
def operator_loc
  deprecated("binary_operator_loc")
  binary_operator_loc
end
save_binary_operator_loc(repository) 点击以切换源代码

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

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

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

# File prism/node.rb, line 5253
def type
  :constant_path_operator_write_node
end