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.



14012
14013
14014
14015
14016
14017
14018
# File 'lib/prism/node.rb', line 14012

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



14059
14060
14061
# File 'lib/prism/node.rb', line 14059

def name
  @name
end

Class Method Details

.typeObject

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



14072
14073
14074
# File 'lib/prism/node.rb', line 14072

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.



14078
14079
14080
14081
14082
# File 'lib/prism/node.rb', line 14078

def ===(other)
  other.is_a?(RequiredParameterNode) &&
    (flags === other.flags) &&
    (name === other.name)
end

#accept(visitor) ⇒ Object

def accept: (Visitor visitor) -> void



14021
14022
14023
# File 'lib/prism/node.rb', line 14021

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

#child_nodesObject Also known as: deconstruct

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



14026
14027
14028
# File 'lib/prism/node.rb', line 14026

def child_nodes
  []
end

#comment_targetsObject

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



14036
14037
14038
# File 'lib/prism/node.rb', line 14036

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

#compact_child_nodesObject

def compact_child_nodes: () -> Array



14031
14032
14033
# File 'lib/prism/node.rb', line 14031

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



14041
14042
14043
# File 'lib/prism/node.rb', line 14041

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 }



14049
14050
14051
# File 'lib/prism/node.rb', line 14049

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

#inspectObject

def inspect -> String



14062
14063
14064
# File 'lib/prism/node.rb', line 14062

def inspect
  InspectVisitor.compose(self)
end

#repeated_parameter?Boolean

def repeated_parameter?: () -> bool

Returns:

  • (Boolean)


14054
14055
14056
# File 'lib/prism/node.rb', line 14054

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

#typeObject

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



14067
14068
14069
# File 'lib/prism/node.rb', line 14067

def type
  :required_parameter_node
end