Class: Prism::ClassVariableOperatorWriteNode
- Inherits:
-
PrismNode
- Object
- PrismNode
- Prism::ClassVariableOperatorWriteNode
- Defined in:
- lib/prism/node.rb,
lib/prism/node_ext.rb,
lib/prism/desugar_compiler.rb,
ext/prism/api_node.c
Overview
Represents assigning to a class variable using an operator that isn’t ‘=`.
@@target += value
^^^^^^^^^^^^^^^^^
Instance Attribute Summary collapse
-
#binary_operator ⇒ Object
readonly
attr_reader binary_operator: Symbol.
-
#name ⇒ Object
readonly
attr_reader name: Symbol.
-
#value ⇒ Object
readonly
attr_reader value: Prism::node.
Class Method Summary collapse
-
.type ⇒ Object
Return a symbol representation of this node type.
Instance Method Summary collapse
-
#===(other) ⇒ Object
Implements case-equality for the node.
-
#accept(visitor) ⇒ Object
def accept: (Visitor visitor) -> void.
-
#binary_operator_loc ⇒ Object
attr_reader binary_operator_loc: Location.
-
#child_nodes ⇒ Object
(also: #deconstruct)
def child_nodes: () -> Array[nil | Node].
-
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location].
-
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array.
-
#copy(node_id: self.node_id, location: self.location, flags: self.flags, name: self.name, name_loc: self.name_loc, binary_operator_loc: self.binary_operator_loc, value: self.value, binary_operator: self.binary_operator) ⇒ Object
def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?name: Symbol, ?name_loc: Location, ?binary_operator_loc: Location, ?value: Prism::node, ?binary_operator: Symbol) -> ClassVariableOperatorWriteNode.
-
#deconstruct_keys(keys) ⇒ Object
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, name: Symbol, name_loc: Location, binary_operator_loc: Location, value: Prism::node, binary_operator: Symbol }.
-
#desugar ⇒ Object
:nodoc:.
-
#initialize(source, node_id, location, flags, name, name_loc, binary_operator_loc, value, binary_operator) ⇒ ClassVariableOperatorWriteNode
constructor
Initialize a new ClassVariableOperatorWriteNode node.
-
#inspect ⇒ Object
def inspect -> String.
-
#name_loc ⇒ Object
attr_reader name_loc: Location.
-
#operator ⇒ Object
Returns the binary operator used to modify the receiver.
-
#operator_loc ⇒ Object
Returns the location of the binary operator used to modify the receiver.
-
#type ⇒ Object
Return a symbol representation of this node type.
Constructor Details
#initialize(source, node_id, location, flags, name, name_loc, binary_operator_loc, value, binary_operator) ⇒ ClassVariableOperatorWriteNode
Initialize a new ClassVariableOperatorWriteNode node.
3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 |
# File 'lib/prism/node.rb', line 3486 def initialize(source, node_id, location, flags, name, name_loc, binary_operator_loc, value, binary_operator) @source = source @node_id = node_id @location = location @flags = flags @name = name @name_loc = name_loc @binary_operator_loc = binary_operator_loc @value = value @binary_operator = binary_operator end |
Instance Attribute Details
#binary_operator ⇒ Object (readonly)
attr_reader binary_operator: Symbol
3552 3553 3554 |
# File 'lib/prism/node.rb', line 3552 def binary_operator @binary_operator end |
#name ⇒ Object (readonly)
attr_reader name: Symbol
3532 3533 3534 |
# File 'lib/prism/node.rb', line 3532 def name @name end |
#value ⇒ Object (readonly)
attr_reader value: Prism::node
3549 3550 3551 |
# File 'lib/prism/node.rb', line 3549 def value @value end |
Class Method Details
.type ⇒ Object
Return a symbol representation of this node type. See ‘Node::type`.
3565 3566 3567 |
# File 'lib/prism/node.rb', line 3565 def self.type :class_variable_operator_write_node end |
Instance Method Details
#===(other) ⇒ Object
Implements case-equality for the node. This is effectively == but without comparing the value of locations. Locations are checked only for presence.
3571 3572 3573 3574 3575 3576 3577 3578 |
# File 'lib/prism/node.rb', line 3571 def ===(other) other.is_a?(ClassVariableOperatorWriteNode) && (name === other.name) && (name_loc.nil? == other.name_loc.nil?) && (binary_operator_loc.nil? == other.binary_operator_loc.nil?) && (value === other.value) && (binary_operator === other.binary_operator) end |
#accept(visitor) ⇒ Object
def accept: (Visitor visitor) -> void
3499 3500 3501 |
# File 'lib/prism/node.rb', line 3499 def accept(visitor) visitor.visit_class_variable_operator_write_node(self) end |
#binary_operator_loc ⇒ Object
attr_reader binary_operator_loc: Location
3542 3543 3544 3545 3546 |
# File 'lib/prism/node.rb', line 3542 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 ⇒ Object Also known as: deconstruct
def child_nodes: () -> Array[nil | Node]
3504 3505 3506 |
# File 'lib/prism/node.rb', line 3504 def child_nodes [value] end |
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location]
3514 3515 3516 |
# File 'lib/prism/node.rb', line 3514 def comment_targets [name_loc, binary_operator_loc, value] #: Array[Prism::node | Location] end |
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array
3509 3510 3511 |
# File 'lib/prism/node.rb', line 3509 def compact_child_nodes [value] end |
#copy(node_id: self.node_id, location: self.location, flags: self.flags, name: self.name, name_loc: self.name_loc, binary_operator_loc: self.binary_operator_loc, value: self.value, binary_operator: self.binary_operator) ⇒ Object
def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?name: Symbol, ?name_loc: Location, ?binary_operator_loc: Location, ?value: Prism::node, ?binary_operator: Symbol) -> ClassVariableOperatorWriteNode
3519 3520 3521 |
# File 'lib/prism/node.rb', line 3519 def copy(node_id: self.node_id, location: self.location, flags: self.flags, name: self.name, name_loc: self.name_loc, binary_operator_loc: self.binary_operator_loc, value: self.value, binary_operator: self.binary_operator) ClassVariableOperatorWriteNode.new(source, node_id, location, flags, name, name_loc, binary_operator_loc, value, binary_operator) end |
#deconstruct_keys(keys) ⇒ Object
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, name: Symbol, name_loc: Location, binary_operator_loc: Location, value: Prism::node, binary_operator: Symbol }
3527 3528 3529 |
# File 'lib/prism/node.rb', line 3527 def deconstruct_keys(keys) { node_id: node_id, location: location, name: name, name_loc: name_loc, binary_operator_loc: binary_operator_loc, value: value, binary_operator: binary_operator } end |
#desugar ⇒ Object
:nodoc:
176 177 178 |
# File 'lib/prism/desugar_compiler.rb', line 176 def desugar # :nodoc: DesugarOperatorWriteNode.new(self, source, :class_variable_read_node, :class_variable_write_node, name: name).compile end |
#inspect ⇒ Object
def inspect -> String
3555 3556 3557 |
# File 'lib/prism/node.rb', line 3555 def inspect InspectVisitor.compose(self) end |
#name_loc ⇒ Object
attr_reader name_loc: Location
3535 3536 3537 3538 3539 |
# File 'lib/prism/node.rb', line 3535 def name_loc location = @name_loc return location if location.is_a?(Location) @name_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end |
#operator ⇒ Object
Returns the binary operator used to modify the receiver. This method is deprecated in favor of #binary_operator.
355 356 357 358 |
# File 'lib/prism/node_ext.rb', line 355 def operator deprecated("binary_operator") binary_operator end |
#operator_loc ⇒ Object
Returns the location of the binary operator used to modify the receiver. This method is deprecated in favor of #binary_operator_loc.
362 363 364 365 |
# File 'lib/prism/node_ext.rb', line 362 def operator_loc deprecated("binary_operator_loc") binary_operator_loc end |
#type ⇒ Object
Return a symbol representation of this node type. See ‘Node#type`.
3560 3561 3562 |
# File 'lib/prism/node.rb', line 3560 def type :class_variable_operator_write_node end |