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:.
-
#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.
11940 11941 11942 11943 11944 11945 11946 11947 11948 11949 11950 11951 |
# File 'lib/prism/node.rb', line 11940 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
12019 12020 12021 |
# File 'lib/prism/node.rb', line 12019 def binary_operator @binary_operator end |
#depth ⇒ Object (readonly)
attr_reader depth: Integer
12022 12023 12024 |
# File 'lib/prism/node.rb', line 12022 def depth @depth end |
#name ⇒ Object (readonly)
attr_reader name: Symbol
12016 12017 12018 |
# File 'lib/prism/node.rb', line 12016 def name @name end |
#value ⇒ Object (readonly)
attr_reader value: Prism::node
12013 12014 12015 |
# File 'lib/prism/node.rb', line 12013 def value @value end |
Class Method Details
.type ⇒ Object
Return a symbol representation of this node type. See ‘Node::type`.
12035 12036 12037 |
# File 'lib/prism/node.rb', line 12035 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.
12041 12042 12043 12044 12045 12046 12047 12048 12049 |
# File 'lib/prism/node.rb', line 12041 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
11954 11955 11956 |
# File 'lib/prism/node.rb', line 11954 def accept(visitor) visitor.visit_local_variable_operator_write_node(self) end |
#binary_operator_loc ⇒ Object
attr_reader binary_operator_loc: Location
12000 12001 12002 12003 12004 |
# File 'lib/prism/node.rb', line 12000 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
11959 11960 11961 |
# File 'lib/prism/node.rb', line 11959 def child_nodes [value] end |
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location]
11969 11970 11971 |
# File 'lib/prism/node.rb', line 11969 def comment_targets [name_loc, binary_operator_loc, value] #: Array[Prism::node | Location] end |
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array
11964 11965 11966 |
# File 'lib/prism/node.rb', line 11964 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
11974 11975 11976 |
# File 'lib/prism/node.rb', line 11974 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 }
11982 11983 11984 |
# File 'lib/prism/node.rb', line 11982 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 |
#inspect ⇒ Object
def inspect -> String
12025 12026 12027 |
# File 'lib/prism/node.rb', line 12025 def inspect InspectVisitor.compose(self) end |
#name_loc ⇒ Object
attr_reader name_loc: Location
11987 11988 11989 11990 11991 |
# File 'lib/prism/node.rb', line 11987 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.
12008 12009 12010 |
# File 'lib/prism/node.rb', line 12008 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.
11995 11996 11997 |
# File 'lib/prism/node.rb', line 11995 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`.
12030 12031 12032 |
# File 'lib/prism/node.rb', line 12030 def type :local_variable_operator_write_node end |