Class: Prism::RequiredParameterNode

Inherits:
PrismNode
  • Object
show all
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

Class Method Summary collapse

Instance Method Summary collapse

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

#nameObject (readonly)

attr_reader name: Symbol



16733
16734
16735
# File 'lib/prism/node.rb', line 16733

def name
  @name
end

Class Method Details

.typeObject

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_nodesObject Also known as: deconstruct

def child_nodes: () -> Array



16694
16695
16696
# File 'lib/prism/node.rb', line 16694

def child_nodes
  []
end

#comment_targetsObject

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_nodesObject

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_nodeObject

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

#inspectObject

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

Returns:

  • (Boolean)


16728
16729
16730
# File 'lib/prism/node.rb', line 16728

def repeated_parameter?
  flags.anybits?(ParameterFlags::REPEATED_PARAMETER)
end

#typeObject

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