Class: Prism::InstanceVariableReadNode

Inherits:
PrismNode
  • Object
show all
Defined in:
lib/prism/node.rb,
ext/prism/api_node.c

Overview

Represents referencing an instance variable.

@foo
^^^^

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source, node_id, location, flags, name) ⇒ InstanceVariableReadNode

Initialize a new InstanceVariableReadNode node.



8957
8958
8959
8960
8961
8962
8963
# File 'lib/prism/node.rb', line 8957

def initialize(source, node_id, location, flags, name)
  @source = source
  @node_id = node_id
  @location = location
  @flags = flags
  @name = name
end

Instance Attribute Details

#nameObject (readonly)

The name of the instance variable, which is a ‘@` followed by an [identifier](github.com/ruby/prism/blob/main/docs/parsing_rules.md#identifiers).

@x     # name `:@x`

@_test # name `:@_test`


9003
9004
9005
# File 'lib/prism/node.rb', line 9003

def name
  @name
end

Class Method Details

.typeObject

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



9016
9017
9018
# File 'lib/prism/node.rb', line 9016

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



9022
9023
9024
9025
# File 'lib/prism/node.rb', line 9022

def ===(other)
  other.is_a?(InstanceVariableReadNode) &&
    (name === other.name)
end

#accept(visitor) ⇒ Object

def accept: (Visitor visitor) -> void



8966
8967
8968
# File 'lib/prism/node.rb', line 8966

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

#child_nodesObject Also known as: deconstruct

def child_nodes: () -> Array[nil | Node]



8971
8972
8973
# File 'lib/prism/node.rb', line 8971

def child_nodes
  []
end

#comment_targetsObject

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



8981
8982
8983
# File 'lib/prism/node.rb', line 8981

def comment_targets
  [] #: Array[Prism::node | Location]
end

#compact_child_nodesObject

def compact_child_nodes: () -> Array



8976
8977
8978
# File 'lib/prism/node.rb', line 8976

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



8986
8987
8988
# File 'lib/prism/node.rb', line 8986

def copy(node_id: self.node_id, location: self.location, flags: self.flags, name: self.name)
  InstanceVariableReadNode.new(source, node_id, location, flags, name)
end

#deconstruct_keys(keys) ⇒ Object

def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, name: Symbol }



8994
8995
8996
# File 'lib/prism/node.rb', line 8994

def deconstruct_keys(keys)
  { node_id: node_id, location: location, name: name }
end

#inspectObject

def inspect -> String



9006
9007
9008
# File 'lib/prism/node.rb', line 9006

def inspect
  InspectVisitor.compose(self)
end

#typeObject

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



9011
9012
9013
# File 'lib/prism/node.rb', line 9011

def type
  :instance_variable_read_node
end