Class: Prism::RequiredParameterNode
- Inherits:
-
PrismNode
- Object
- PrismNode
- Prism::RequiredParameterNode
- Defined in:
- lib/prism/node.rb,
ext/prism/api_node.c
Overview
Represents a required parameter to a method, block, or lambda definition.
def a(b)
^
end
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.
-
#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) -> RequiredParameterNode.
-
#deconstruct_keys(keys) ⇒ Object
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, name: Symbol }.
-
#each_child_node ⇒ Object
def each_child_node: () { (Prism::node) -> void } -> void | () -> Enumerator.
-
#initialize(source, node_id, location, flags, name) ⇒ RequiredParameterNode
constructor
Initialize a new RequiredParameterNode node.
-
#inspect ⇒ Object
def inspect -> String.
-
#repeated_parameter? ⇒ Boolean
def repeated_parameter?: () -> bool.
-
#type ⇒ Object
Return a symbol representation of this node type.
Constructor Details
#initialize(source, node_id, location, flags, name) ⇒ RequiredParameterNode
Initialize a new RequiredParameterNode node.
16680 16681 16682 16683 16684 16685 16686 |
# File 'lib/prism/node.rb', line 16680 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
16733 16734 16735 |
# File 'lib/prism/node.rb', line 16733 def name @name end |
Class Method Details
.type ⇒ Object
Return a symbol representation of this node type. See Node::type.
16746 16747 16748 |
# File 'lib/prism/node.rb', line 16746 def self.type :required_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.
16752 16753 16754 16755 16756 |
# File 'lib/prism/node.rb', line 16752 def ===(other) other.is_a?(RequiredParameterNode) && (flags === other.flags) && (name === other.name) end |
#accept(visitor) ⇒ Object
def accept: (Visitor visitor) -> void
16689 16690 16691 |
# File 'lib/prism/node.rb', line 16689 def accept(visitor) visitor.visit_required_parameter_node(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
def child_nodes: () -> Array
16694 16695 16696 |
# File 'lib/prism/node.rb', line 16694 def child_nodes [] end |
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location]
16710 16711 16712 |
# File 'lib/prism/node.rb', line 16710 def comment_targets [] #: Array[Prism::node | Location] end |
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array
16705 16706 16707 |
# File 'lib/prism/node.rb', line 16705 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) -> RequiredParameterNode
16715 16716 16717 |
# File 'lib/prism/node.rb', line 16715 def copy(node_id: self.node_id, location: self.location, flags: self.flags, name: self.name) RequiredParameterNode.new(source, node_id, location, flags, name) end |
#deconstruct_keys(keys) ⇒ Object
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, name: Symbol }
16723 16724 16725 |
# File 'lib/prism/node.rb', line 16723 def deconstruct_keys(keys) { node_id: node_id, location: location, name: name } end |
#each_child_node ⇒ Object
def each_child_node: () { (Prism::node) -> void } -> void | () -> Enumerator
16699 16700 16701 16702 |
# File 'lib/prism/node.rb', line 16699 def each_child_node return to_enum(:each_child_node) unless block_given? end |
#inspect ⇒ Object
def inspect -> String
16736 16737 16738 |
# File 'lib/prism/node.rb', line 16736 def inspect InspectVisitor.compose(self) end |
#repeated_parameter? ⇒ Boolean
def repeated_parameter?: () -> bool
16728 16729 16730 |
# File 'lib/prism/node.rb', line 16728 def repeated_parameter? flags.anybits?(ParameterFlags::REPEATED_PARAMETER) end |
#type ⇒ Object
Return a symbol representation of this node type. See ‘Node#type`.
16741 16742 16743 |
# File 'lib/prism/node.rb', line 16741 def type :required_parameter_node end |