Class: Prism::ConstantTargetNode
- Inherits:
-
PrismNode
- Object
- PrismNode
- Prism::ConstantTargetNode
- Defined in:
- lib/prism/node.rb,
lib/prism/node_ext.rb,
ext/prism/api_node.c
Overview
Represents writing to a constant in a context that doesn’t have an explicit value.
Foo, Bar = baz
^^^ ^^^
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
attr_reader name: Symbol.
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.
-
#child_nodes ⇒ Object
(also: #deconstruct)
def child_nodes: () -> Array[nil | Node].
-
#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: self.name) ⇒ Object
def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?name: Symbol) -> ConstantTargetNode.
-
#deconstruct_keys(keys) ⇒ Object
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, name: Symbol }.
-
#full_name ⇒ Object
Returns the full name of this constant.
-
#full_name_parts ⇒ Object
Returns the list of parts for the full name of this constant.
-
#initialize(source, node_id, location, flags, name) ⇒ ConstantTargetNode
constructor
Initialize a new ConstantTargetNode node.
-
#inspect ⇒ Object
def inspect -> String.
-
#type ⇒ Object
Return a symbol representation of this node type.
Constructor Details
#initialize(source, node_id, location, flags, name) ⇒ ConstantTargetNode
Initialize a new ConstantTargetNode node.
4948 4949 4950 4951 4952 4953 4954 |
# File 'lib/prism/node.rb', line 4948 def initialize(source, node_id, location, flags, name) @source = source @node_id = node_id @location = location @flags = flags @name = name end |
Instance Attribute Details
#name ⇒ Object (readonly)
attr_reader name: Symbol
4990 4991 4992 |
# File 'lib/prism/node.rb', line 4990 def name @name end |
Class Method Details
.type ⇒ Object
Return a symbol representation of this node type. See ‘Node::type`.
5003 5004 5005 |
# File 'lib/prism/node.rb', line 5003 def self.type :constant_target_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.
5009 5010 5011 5012 |
# File 'lib/prism/node.rb', line 5009 def ===(other) other.is_a?(ConstantTargetNode) && (name === other.name) end |
#accept(visitor) ⇒ Object
def accept: (Visitor visitor) -> void
4957 4958 4959 |
# File 'lib/prism/node.rb', line 4957 def accept(visitor) visitor.visit_constant_target_node(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
def child_nodes: () -> Array[nil | Node]
4962 4963 4964 |
# File 'lib/prism/node.rb', line 4962 def child_nodes [] end |
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location]
4972 4973 4974 |
# File 'lib/prism/node.rb', line 4972 def comment_targets [] #: Array[Prism::node | Location] end |
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array
4967 4968 4969 |
# File 'lib/prism/node.rb', line 4967 def compact_child_nodes [] end |
#copy(node_id: self.node_id, location: self.location, flags: self.flags, name: self.name) ⇒ Object
def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?name: Symbol) -> ConstantTargetNode
4977 4978 4979 |
# File 'lib/prism/node.rb', line 4977 def copy(node_id: self.node_id, location: self.location, flags: self.flags, name: self.name) ConstantTargetNode.new(source, node_id, location, flags, name) end |
#deconstruct_keys(keys) ⇒ Object
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, name: Symbol }
4985 4986 4987 |
# File 'lib/prism/node.rb', line 4985 def deconstruct_keys(keys) { node_id: node_id, location: location, name: name } end |
#full_name ⇒ Object
Returns the full name of this constant. For example: “Foo”
262 263 264 |
# File 'lib/prism/node_ext.rb', line 262 def full_name name.to_s end |
#full_name_parts ⇒ Object
Returns the list of parts for the full name of this constant. For example: [:Foo]
257 258 259 |
# File 'lib/prism/node_ext.rb', line 257 def full_name_parts [name] end |
#inspect ⇒ Object
def inspect -> String
4993 4994 4995 |
# File 'lib/prism/node.rb', line 4993 def inspect InspectVisitor.compose(self) end |
#type ⇒ Object
Return a symbol representation of this node type. See ‘Node#type`.
4998 4999 5000 |
# File 'lib/prism/node.rb', line 4998 def type :constant_target_node end |