Class: Prism::ClassVariableAndWriteNode

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) ⇒ ClassVariableAndWriteNode

Initialize a new ClassVariableAndWriteNode node.



3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
# File 'lib/prism/node.rb', line 3978

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)

The name of the class variable, which is a ‘@@` followed by an [identifier](github.com/ruby/prism/blob/main/docs/parsing_rules.md#identifiers).

@@target &&= value # name `:@@target`
^^^^^^^^


4026
4027
4028
# File 'lib/prism/node.rb', line 4026

def name
  @name
end

#valueObject (readonly)

Represents the value being assigned. This can be any [non-void expression](github.com/ruby/prism/blob/main/docs/parsing_rules.md#non-void-expression).

@@target &&= value
             ^^^^^


4064
4065
4066
# File 'lib/prism/node.rb', line 4064

def value
  @value
end

Class Method Details

.typeObject

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



4082
4083
4084
# File 'lib/prism/node.rb', line 4082

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



4088
4089
4090
4091
4092
4093
4094
# File 'lib/prism/node.rb', line 4088

def ===(other)
  other.is_a?(ClassVariableAndWriteNode) &&
    (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



3990
3991
3992
# File 'lib/prism/node.rb', line 3990

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

#child_nodesObject Also known as: deconstruct

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



3995
3996
3997
# File 'lib/prism/node.rb', line 3995

def child_nodes
  [value]
end

#comment_targetsObject

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



4005
4006
4007
# File 'lib/prism/node.rb', line 4005

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

#compact_child_nodesObject

def compact_child_nodes: () -> Array



4000
4001
4002
# File 'lib/prism/node.rb', line 4000

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) -> ClassVariableAndWriteNode



4010
4011
4012
# File 'lib/prism/node.rb', line 4010

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)
  ClassVariableAndWriteNode.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 }



4018
4019
4020
# File 'lib/prism/node.rb', line 4018

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:



164
165
166
# File 'lib/prism/desugar_compiler.rb', line 164

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

#inspectObject

def inspect -> String



4072
4073
4074
# File 'lib/prism/node.rb', line 4072

def inspect
  InspectVisitor.compose(self)
end

#name_locObject

Represents the location of the variable name.

@@target &&= value
^^^^^^^^


4032
4033
4034
4035
4036
# File 'lib/prism/node.rb', line 4032

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



4067
4068
4069
# File 'lib/prism/node.rb', line 4067

def operator
  operator_loc.slice
end

#operator_locObject

Represents the location of the ‘&&=` operator.

@@target &&= value
         ^^^


4048
4049
4050
4051
4052
# File 'lib/prism/node.rb', line 4048

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

#save_name_loc(repository) ⇒ Object

Save the name_loc location using the given saved source so that it can be retrieved later.



4040
4041
4042
# File 'lib/prism/node.rb', line 4040

def save_name_loc(repository)
  repository.enter(node_id, :name_loc)
end

#save_operator_loc(repository) ⇒ Object

Save the operator_loc location using the given saved source so that it can be retrieved later.



4056
4057
4058
# File 'lib/prism/node.rb', line 4056

def save_operator_loc(repository)
  repository.enter(node_id, :operator_loc)
end

#typeObject

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



4077
4078
4079
# File 'lib/prism/node.rb', line 4077

def type
  :class_variable_and_write_node
end