Class: Prism::ConstantAndWriteNode

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 constant.

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

Initialize a new ConstantAndWriteNode node.



4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
# File 'lib/prism/node.rb', line 4929

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



4981
4982
4983
# File 'lib/prism/node.rb', line 4981

def name
  @name
end

#valueObject (readonly)

attr_reader value: Prism::node



5010
5011
5012
# File 'lib/prism/node.rb', line 5010

def value
  @value
end

Class Method Details

.typeObject

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



5028
5029
5030
# File 'lib/prism/node.rb', line 5028

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



5034
5035
5036
5037
5038
5039
5040
# File 'lib/prism/node.rb', line 5034

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



4941
4942
4943
# File 'lib/prism/node.rb', line 4941

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

#child_nodesObject Also known as: deconstruct

def child_nodes: () -> Array



4946
4947
4948
# File 'lib/prism/node.rb', line 4946

def child_nodes
  [value]
end

#comment_targetsObject

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



4963
4964
4965
# File 'lib/prism/node.rb', line 4963

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

#compact_child_nodesObject

def compact_child_nodes: () -> Array



4958
4959
4960
# File 'lib/prism/node.rb', line 4958

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



4968
4969
4970
# File 'lib/prism/node.rb', line 4968

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



4976
4977
4978
# File 'lib/prism/node.rb', line 4976

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:



183
184
185
# File 'lib/prism/desugar_compiler.rb', line 183

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

#each_child_node {|value| ... } ⇒ Object

def each_child_node: () { (Prism::node) -> void } -> void | () -> Enumerator

Yields:



4951
4952
4953
4954
4955
# File 'lib/prism/node.rb', line 4951

def each_child_node
  return to_enum(:each_child_node) unless block_given?

  yield value
end

#inspectObject

def inspect -> String



5018
5019
5020
# File 'lib/prism/node.rb', line 5018

def inspect
  InspectVisitor.compose(self)
end

#name_locObject

attr_reader name_loc: Location



4984
4985
4986
4987
4988
# File 'lib/prism/node.rb', line 4984

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



5013
5014
5015
# File 'lib/prism/node.rb', line 5013

def operator
  operator_loc.slice
end

#operator_locObject

attr_reader operator_loc: Location



4997
4998
4999
5000
5001
# File 'lib/prism/node.rb', line 4997

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.



4992
4993
4994
# File 'lib/prism/node.rb', line 4992

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.



5005
5006
5007
# File 'lib/prism/node.rb', line 5005

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

#typeObject

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



5023
5024
5025
# File 'lib/prism/node.rb', line 5023

def type
  :constant_and_write_node
end