Class: Prism::BlockParameterNode
- Inherits:
-
PrismNode
- Object
- PrismNode
- Prism::BlockParameterNode
- Defined in:
- lib/prism/node.rb,
ext/prism/api_node.c
Overview
Represents a block parameter of a method, block, or lambda definition.
def a(&b)
^^
end
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
The name of the block parameter.
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, name_loc: self.name_loc, operator_loc: self.operator_loc) ⇒ Object
def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?name: Symbol?, ?name_loc: Location?, ?operator_loc: Location) -> BlockParameterNode.
-
#deconstruct_keys(keys) ⇒ Object
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, name: Symbol?, name_loc: Location?, operator_loc: Location }.
-
#initialize(source, node_id, location, flags, name, name_loc, operator_loc) ⇒ BlockParameterNode
constructor
Initialize a new BlockParameterNode node.
-
#inspect ⇒ Object
def inspect -> String.
-
#name_loc ⇒ Object
Represents the location of the block parameter name.
-
#operator ⇒ Object
def operator: () -> String.
-
#operator_loc ⇒ Object
Represents the location of the ‘&` operator.
-
#repeated_parameter? ⇒ Boolean
def repeated_parameter?: () -> bool.
-
#save_name_loc(repository) ⇒ Object
Save the name_loc location using the given saved source so that it can be retrieved later.
-
#save_operator_loc(repository) ⇒ Object
Save the operator_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, name_loc, operator_loc) ⇒ BlockParameterNode
Initialize a new BlockParameterNode node.
1978 1979 1980 1981 1982 1983 1984 1985 1986 |
# File 'lib/prism/node.rb', line 1978 def initialize(source, node_id, location, flags, name, name_loc, operator_loc) @source = source @node_id = node_id @location = location @flags = flags @name = name @name_loc = name_loc @operator_loc = operator_loc end |
Instance Attribute Details
#name ⇒ Object (readonly)
The name of the block parameter.
def a(&b) # name `:b`
^
end
2031 2032 2033 |
# File 'lib/prism/node.rb', line 2031 def name @name end |
Class Method Details
.type ⇒ Object
Return a symbol representation of this node type. See ‘Node::type`.
2088 2089 2090 |
# File 'lib/prism/node.rb', line 2088 def self.type :block_parameter_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.
2094 2095 2096 2097 2098 2099 2100 |
# File 'lib/prism/node.rb', line 2094 def ===(other) other.is_a?(BlockParameterNode) && (flags === other.flags) && (name === other.name) && (name_loc.nil? == other.name_loc.nil?) && (operator_loc.nil? == other.operator_loc.nil?) end |
#accept(visitor) ⇒ Object
def accept: (Visitor visitor) -> void
1989 1990 1991 |
# File 'lib/prism/node.rb', line 1989 def accept(visitor) visitor.visit_block_parameter_node(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
def child_nodes: () -> Array[nil | Node]
1994 1995 1996 |
# File 'lib/prism/node.rb', line 1994 def child_nodes [] end |
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location]
2004 2005 2006 |
# File 'lib/prism/node.rb', line 2004 def comment_targets [*name_loc, operator_loc] #: Array[Prism::node | Location] end |
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array
1999 2000 2001 |
# File 'lib/prism/node.rb', line 1999 def compact_child_nodes [] end |
#copy(node_id: self.node_id, location: self.location, flags: self.flags, name: self.name, name_loc: self.name_loc, operator_loc: self.operator_loc) ⇒ Object
def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?name: Symbol?, ?name_loc: Location?, ?operator_loc: Location) -> BlockParameterNode
2009 2010 2011 |
# File 'lib/prism/node.rb', line 2009 def copy(node_id: self.node_id, location: self.location, flags: self.flags, name: self.name, name_loc: self.name_loc, operator_loc: self.operator_loc) BlockParameterNode.new(source, node_id, location, flags, name, name_loc, operator_loc) end |
#deconstruct_keys(keys) ⇒ Object
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, name: Symbol?, name_loc: Location?, operator_loc: Location }
2017 2018 2019 |
# File 'lib/prism/node.rb', line 2017 def deconstruct_keys(keys) { node_id: node_id, location: location, name: name, name_loc: name_loc, operator_loc: operator_loc } end |
#inspect ⇒ Object
def inspect -> String
2078 2079 2080 |
# File 'lib/prism/node.rb', line 2078 def inspect InspectVisitor.compose(self) end |
#name_loc ⇒ Object
Represents the location of the block parameter name.
def a(&b)
^
2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 |
# File 'lib/prism/node.rb', line 2037 def name_loc location = @name_loc case location when nil nil when Location location else @name_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end end |
#operator ⇒ Object
def operator: () -> String
2073 2074 2075 |
# File 'lib/prism/node.rb', line 2073 def operator operator_loc.slice end |
#operator_loc ⇒ Object
Represents the location of the ‘&` operator.
def a(&b)
^
end
2060 2061 2062 2063 2064 |
# File 'lib/prism/node.rb', line 2060 def operator_loc location = @operator_loc return location if location.is_a?(Location) @operator_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end |
#repeated_parameter? ⇒ Boolean
def repeated_parameter?: () -> bool
2022 2023 2024 |
# File 'lib/prism/node.rb', line 2022 def repeated_parameter? flags.anybits?(ParameterFlags::REPEATED_PARAMETER) end |
#save_name_loc(repository) ⇒ Object
Save the name_loc location using the given saved source so that it can be retrieved later.
2051 2052 2053 |
# File 'lib/prism/node.rb', line 2051 def save_name_loc(repository) repository.enter(node_id, :name_loc) unless @name_loc.nil? end |
#save_operator_loc(repository) ⇒ Object
Save the operator_loc location using the given saved source so that it can be retrieved later.
2068 2069 2070 |
# File 'lib/prism/node.rb', line 2068 def save_operator_loc(repository) repository.enter(node_id, :operator_loc) end |
#type ⇒ Object
Return a symbol representation of this node type. See ‘Node#type`.
2083 2084 2085 |
# File 'lib/prism/node.rb', line 2083 def type :block_parameter_node end |