Class: Prism::ClassVariableOrWriteNode

Inherits:
PrismNode
  • Object
show all
Defined in:
lib/prism/node.rb,
lib/prism/desugar_compiler.rb,
ext/prism/api_node.c

Overview

Represents the use of the ‘||=` operator for assignment to a class variable.

@@target ||= value
^^^^^^^^^^^^^^^^^^

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source, node_id, location, flags, name, name_loc, operator_loc, value) ⇒ ClassVariableOrWriteNode

Initialize a new ClassVariableOrWriteNode node.



3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
# File 'lib/prism/node.rb', line 3587

def initialize(source, node_id, location, flags, name, name_loc, operator_loc, value)
  @source = source
  @node_id = node_id
  @location = location
  @flags = flags
  @name = name
  @name_loc = name_loc
  @operator_loc = operator_loc
  @value = value
end

Instance Attribute Details

#nameObject (readonly)

attr_reader name: Symbol



3632
3633
3634
# File 'lib/prism/node.rb', line 3632

def name
  @name
end

#valueObject (readonly)

attr_reader value: Prism::node



3649
3650
3651
# File 'lib/prism/node.rb', line 3649

def value
  @value
end

Class Method Details

.typeObject

Return a symbol representation of this node type. See ‘Node::type`.



3667
3668
3669
# File 'lib/prism/node.rb', line 3667

def self.type
  :class_variable_or_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.



3673
3674
3675
3676
3677
3678
3679
# File 'lib/prism/node.rb', line 3673

def ===(other)
  other.is_a?(ClassVariableOrWriteNode) &&
    (name === other.name) &&
    (name_loc.nil? == other.name_loc.nil?) &&
    (operator_loc.nil? == other.operator_loc.nil?) &&
    (value === other.value)
end

#accept(visitor) ⇒ Object

def accept: (Visitor visitor) -> void



3599
3600
3601
# File 'lib/prism/node.rb', line 3599

def accept(visitor)
  visitor.visit_class_variable_or_write_node(self)
end

#child_nodesObject Also known as: deconstruct

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



3604
3605
3606
# File 'lib/prism/node.rb', line 3604

def child_nodes
  [value]
end

#comment_targetsObject

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



3614
3615
3616
# File 'lib/prism/node.rb', line 3614

def comment_targets
  [name_loc, operator_loc, value] #: Array[Prism::node | Location]
end

#compact_child_nodesObject

def compact_child_nodes: () -> Array



3609
3610
3611
# File 'lib/prism/node.rb', line 3609

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, operator_loc: self.operator_loc, value: self.value) ⇒ Object

def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?name: Symbol, ?name_loc: Location, ?operator_loc: Location, ?value: Prism::node) -> ClassVariableOrWriteNode



3619
3620
3621
# File 'lib/prism/node.rb', line 3619

def copy(node_id: self.node_id, location: self.location, flags: self.flags, name: self.name, name_loc: self.name_loc, operator_loc: self.operator_loc, value: self.value)
  ClassVariableOrWriteNode.new(source, node_id, location, flags, name, name_loc, operator_loc, value)
end

#deconstruct_keys(keys) ⇒ Object

def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, name: Symbol, name_loc: Location, operator_loc: Location, value: Prism::node }



3627
3628
3629
# File 'lib/prism/node.rb', line 3627

def deconstruct_keys(keys)
  { node_id: node_id, location: location, name: name, name_loc: name_loc, operator_loc: operator_loc, value: value }
end

#desugarObject

:nodoc:



170
171
172
# File 'lib/prism/desugar_compiler.rb', line 170

def desugar # :nodoc:
  DesugarOrWriteDefinedNode.new(self, source, :class_variable_read_node, :class_variable_write_node, name: name).compile
end

#inspectObject

def inspect -> String



3657
3658
3659
# File 'lib/prism/node.rb', line 3657

def inspect
  InspectVisitor.compose(self)
end

#name_locObject

attr_reader name_loc: Location



3635
3636
3637
3638
3639
# File 'lib/prism/node.rb', line 3635

def name_loc
  location = @name_loc
  return location if location.is_a?(Location)
  @name_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF)
end

#operatorObject

def operator: () -> String



3652
3653
3654
# File 'lib/prism/node.rb', line 3652

def operator
  operator_loc.slice
end

#operator_locObject

attr_reader operator_loc: Location



3642
3643
3644
3645
3646
# File 'lib/prism/node.rb', line 3642

def operator_loc
  location = @operator_loc
  return location if location.is_a?(Location)
  @operator_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF)
end

#typeObject

Return a symbol representation of this node type. See ‘Node#type`.



3662
3663
3664
# File 'lib/prism/node.rb', line 3662

def type
  :class_variable_or_write_node
end