Represents writing to a class variable.

@@foo = 1
^^^^^^^^^
Attributes
Read

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

@@abc = 123     # name `@@abc`

@@_test = :test # name `@@_test`
Read

The value to write to the class variable. This can be any [non-void expression](github.com/ruby/prism/blob/main/docs/parsing_rules.md#non-void-expression).

@@foo = :bar
        ^^^^

@@_xyz = 123
         ^^^
Class Methods

Initialize a new ClassVariableWriteNode node.

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

Instance Methods

Implements case-equality for the node. This is effectively == but without comparing the value of locations. Locations are checked only for presence.

def accept: (Visitor visitor) -> void

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

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

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

An alias for child_nodes

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

def inspect -> String

The location of the variable name.

@@foo = :bar
^^^^^

def operator: () -> String

The location of the ‘=` operator.

@@foo = :bar
      ^

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

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

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