Class: Prism::LocalVariableOperatorWriteNode
- Inherits:
-
PrismNode
- Object
- PrismNode
- Prism::LocalVariableOperatorWriteNode
- 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 local variable using an operator that isn’t ‘=`.
target += value
^^^^^^^^^^^^^^^
Instance Attribute Summary collapse
-
#binary_operator ⇒ Object
readonly
attr_reader binary_operator: Symbol.
-
#depth ⇒ Object
readonly
attr_reader depth: Integer.
-
#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.
-
#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_loc: self.name_loc, binary_operator_loc: self.binary_operator_loc, value: self.value, name: self.name, binary_operator: self.binary_operator, depth: self.depth) ⇒ Object
def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?name_loc: Location, ?binary_operator_loc: Location, ?value: Prism::node, ?name: Symbol, ?binary_operator: Symbol, ?depth: Integer) -> LocalVariableOperatorWriteNode.
-
#deconstruct_keys(keys) ⇒ Object
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, name_loc: Location, binary_operator_loc: Location, value: Prism::node, name: Symbol, binary_operator: Symbol, depth: Integer }.
-
#desugar ⇒ Object
:nodoc:.
-
#each_child_node {|value| ... } ⇒ Object
def each_child_node: () { (Prism::node) -> void } -> void | () -> Enumerator.
-
#initialize(source, node_id, location, flags, name_loc, binary_operator_loc, value, name, binary_operator, depth) ⇒ LocalVariableOperatorWriteNode
constructor
Initialize a new LocalVariableOperatorWriteNode 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.
-
#save_binary_operator_loc(repository) ⇒ Object
Save the binary_operator_loc location using the given saved source so that it can be retrieved later.
-
#save_name_loc(repository) ⇒ Object
Save the name_loc location using the given saved source so that it can be retrieved later.
-
#type ⇒ Object
Return a symbol representation of this node type.
Constructor Details
#initialize(source, node_id, location, flags, name_loc, binary_operator_loc, value, name, binary_operator, depth) ⇒ LocalVariableOperatorWriteNode
Initialize a new LocalVariableOperatorWriteNode node.
12640 12641 12642 12643 12644 12645 12646 12647 12648 12649 12650 12651 |
# File 'lib/prism/node.rb', line 12640 def initialize(source, node_id, location, flags, name_loc, binary_operator_loc, value, name, binary_operator, depth) @source = source @node_id = node_id @location = location @flags = flags @name_loc = name_loc @binary_operator_loc = binary_operator_loc @value = value @name = name @binary_operator = binary_operator @depth = depth end |
Instance Attribute Details
#binary_operator ⇒ Object (readonly)
attr_reader binary_operator: Symbol
12726 12727 12728 |
# File 'lib/prism/node.rb', line 12726 def binary_operator @binary_operator end |
#depth ⇒ Object (readonly)
attr_reader depth: Integer
12729 12730 12731 |
# File 'lib/prism/node.rb', line 12729 def depth @depth end |
#name ⇒ Object (readonly)
attr_reader name: Symbol
12723 12724 12725 |
# File 'lib/prism/node.rb', line 12723 def name @name end |
#value ⇒ Object (readonly)
attr_reader value: Prism::node
12720 12721 12722 |
# File 'lib/prism/node.rb', line 12720 def value @value end |
Class Method Details
.type ⇒ Object
Return a symbol representation of this node type. See Node::type.
12742 12743 12744 |
# File 'lib/prism/node.rb', line 12742 def self.type :local_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.
12748 12749 12750 12751 12752 12753 12754 12755 12756 |
# File 'lib/prism/node.rb', line 12748 def ===(other) other.is_a?(LocalVariableOperatorWriteNode) && (name_loc.nil? == other.name_loc.nil?) && (binary_operator_loc.nil? == other.binary_operator_loc.nil?) && (value === other.value) && (name === other.name) && (binary_operator === other.binary_operator) && (depth === other.depth) end |
#accept(visitor) ⇒ Object
def accept: (Visitor visitor) -> void
12654 12655 12656 |
# File 'lib/prism/node.rb', line 12654 def accept(visitor) visitor.visit_local_variable_operator_write_node(self) end |
#binary_operator_loc ⇒ Object
attr_reader binary_operator_loc: Location
12707 12708 12709 12710 12711 |
# File 'lib/prism/node.rb', line 12707 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
12659 12660 12661 |
# File 'lib/prism/node.rb', line 12659 def child_nodes [value] end |
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location]
12676 12677 12678 |
# File 'lib/prism/node.rb', line 12676 def comment_targets [name_loc, binary_operator_loc, value] #: Array[Prism::node | Location] end |
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array
12671 12672 12673 |
# File 'lib/prism/node.rb', line 12671 def compact_child_nodes [value] end |
#copy(node_id: self.node_id, location: self.location, flags: self.flags, name_loc: self.name_loc, binary_operator_loc: self.binary_operator_loc, value: self.value, name: self.name, binary_operator: self.binary_operator, depth: self.depth) ⇒ Object
def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?name_loc: Location, ?binary_operator_loc: Location, ?value: Prism::node, ?name: Symbol, ?binary_operator: Symbol, ?depth: Integer) -> LocalVariableOperatorWriteNode
12681 12682 12683 |
# File 'lib/prism/node.rb', line 12681 def copy(node_id: self.node_id, location: self.location, flags: self.flags, name_loc: self.name_loc, binary_operator_loc: self.binary_operator_loc, value: self.value, name: self.name, binary_operator: self.binary_operator, depth: self.depth) LocalVariableOperatorWriteNode.new(source, node_id, location, flags, name_loc, binary_operator_loc, value, name, binary_operator, depth) end |
#deconstruct_keys(keys) ⇒ Object
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, name_loc: Location, binary_operator_loc: Location, value: Prism::node, name: Symbol, binary_operator: Symbol, depth: Integer }
12689 12690 12691 |
# File 'lib/prism/node.rb', line 12689 def deconstruct_keys(keys) { node_id: node_id, location: location, name_loc: name_loc, binary_operator_loc: binary_operator_loc, value: value, name: name, binary_operator: binary_operator, depth: depth } end |
#desugar ⇒ Object
:nodoc:
249 250 251 |
# File 'lib/prism/desugar_compiler.rb', line 249 def desugar # :nodoc: DesugarOperatorWriteNode.new(self, source, :local_variable_read_node, :local_variable_write_node, name: name, depth: depth).compile end |
#each_child_node {|value| ... } ⇒ Object
def each_child_node: () { (Prism::node) -> void } -> void | () -> Enumerator
12664 12665 12666 12667 12668 |
# File 'lib/prism/node.rb', line 12664 def each_child_node return to_enum(:each_child_node) unless block_given? yield value end |
#inspect ⇒ Object
def inspect -> String
12732 12733 12734 |
# File 'lib/prism/node.rb', line 12732 def inspect InspectVisitor.compose(self) end |
#name_loc ⇒ Object
attr_reader name_loc: Location
12694 12695 12696 12697 12698 |
# File 'lib/prism/node.rb', line 12694 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.
454 455 456 457 |
# File 'lib/prism/node_ext.rb', line 454 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.
461 462 463 464 |
# File 'lib/prism/node_ext.rb', line 461 def operator_loc deprecated("binary_operator_loc") binary_operator_loc end |
#save_binary_operator_loc(repository) ⇒ Object
Save the binary_operator_loc location using the given saved source so that it can be retrieved later.
12715 12716 12717 |
# File 'lib/prism/node.rb', line 12715 def save_binary_operator_loc(repository) repository.enter(node_id, :binary_operator_loc) end |
#save_name_loc(repository) ⇒ Object
Save the name_loc location using the given saved source so that it can be retrieved later.
12702 12703 12704 |
# File 'lib/prism/node.rb', line 12702 def save_name_loc(repository) repository.enter(node_id, :name_loc) end |
#type ⇒ Object
Return a symbol representation of this node type. See ‘Node#type`.
12737 12738 12739 |
# File 'lib/prism/node.rb', line 12737 def type :local_variable_operator_write_node end |