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.
11903 11904 11905 11906 11907 11908 11909 11910 11911 11912 11913 11914 |
# File 'lib/prism/node.rb', line 11903 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
11982 11983 11984 |
# File 'lib/prism/node.rb', line 11982 def binary_operator @binary_operator end |
#depth ⇒ Object (readonly)
attr_reader depth: Integer
11985 11986 11987 |
# File 'lib/prism/node.rb', line 11985 def depth @depth end |
#name ⇒ Object (readonly)
attr_reader name: Symbol
11979 11980 11981 |
# File 'lib/prism/node.rb', line 11979 def name @name end |
#value ⇒ Object (readonly)
attr_reader value: Prism::node
11976 11977 11978 |
# File 'lib/prism/node.rb', line 11976 def value @value end |
Class Method Details
.type ⇒ Object
Return a symbol representation of this node type. See ‘Node::type`.
11998 11999 12000 |
# File 'lib/prism/node.rb', line 11998 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.
12004 12005 12006 12007 12008 12009 12010 12011 12012 |
# File 'lib/prism/node.rb', line 12004 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
11917 11918 11919 |
# File 'lib/prism/node.rb', line 11917 def accept(visitor) visitor.visit_local_variable_operator_write_node(self) end |
#binary_operator_loc ⇒ Object
attr_reader binary_operator_loc: Location
11963 11964 11965 11966 11967 |
# File 'lib/prism/node.rb', line 11963 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
11922 11923 11924 |
# File 'lib/prism/node.rb', line 11922 def child_nodes [value] end |
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location]
11932 11933 11934 |
# File 'lib/prism/node.rb', line 11932 def comment_targets [name_loc, binary_operator_loc, value] #: Array[Prism::node | Location] end |
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array
11927 11928 11929 |
# File 'lib/prism/node.rb', line 11927 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
11937 11938 11939 |
# File 'lib/prism/node.rb', line 11937 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 }
11945 11946 11947 |
# File 'lib/prism/node.rb', line 11945 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
11988 11989 11990 |
# File 'lib/prism/node.rb', line 11988 def inspect InspectVisitor.compose(self) end |
#name_loc ⇒ Object
attr_reader name_loc: Location
11950 11951 11952 11953 11954 |
# File 'lib/prism/node.rb', line 11950 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.
11971 11972 11973 |
# File 'lib/prism/node.rb', line 11971 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.
11958 11959 11960 |
# File 'lib/prism/node.rb', line 11958 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`.
11993 11994 11995 |
# File 'lib/prism/node.rb', line 11993 def type :local_variable_operator_write_node end |