Class: Prism::ArgumentsNode

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

Overview

Represents a set of arguments to a method or a keyword.

return foo, bar, baz
       ^^^^^^^^^^^^^

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source, node_id, location, flags, arguments) ⇒ ArgumentsNode

Initialize a new ArgumentsNode node.



621
622
623
624
625
626
627
# File 'lib/prism/node.rb', line 621

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

Instance Attribute Details

#argumentsObject (readonly)

attr_reader arguments: Array



678
679
680
# File 'lib/prism/node.rb', line 678

def arguments
  @arguments
end

Class Method Details

.typeObject

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



691
692
693
# File 'lib/prism/node.rb', line 691

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



697
698
699
700
701
702
# File 'lib/prism/node.rb', line 697

def ===(other)
  other.is_a?(ArgumentsNode) &&
    (flags === other.flags) &&
    (arguments.length == other.arguments.length) &&
    arguments.zip(other.arguments).all? { |left, right| left === right }
end

#accept(visitor) ⇒ Object

def accept: (Visitor visitor) -> void



630
631
632
# File 'lib/prism/node.rb', line 630

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

#child_nodesObject Also known as: deconstruct

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



635
636
637
# File 'lib/prism/node.rb', line 635

def child_nodes
  [*arguments]
end

#comment_targetsObject

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



645
646
647
# File 'lib/prism/node.rb', line 645

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

#compact_child_nodesObject

def compact_child_nodes: () -> Array



640
641
642
# File 'lib/prism/node.rb', line 640

def compact_child_nodes
  [*arguments]
end

#contains_keyword_splat?Boolean

def contains_keyword_splat?: () -> bool

Returns:

  • (Boolean)


668
669
670
# File 'lib/prism/node.rb', line 668

def contains_keyword_splat?
  flags.anybits?(ArgumentsNodeFlags::CONTAINS_KEYWORD_SPLAT)
end

#contains_keywords?Boolean

def contains_keywords?: () -> bool

Returns:

  • (Boolean)


663
664
665
# File 'lib/prism/node.rb', line 663

def contains_keywords?
  flags.anybits?(ArgumentsNodeFlags::CONTAINS_KEYWORDS)
end

#contains_splat?Boolean

def contains_splat?: () -> bool

Returns:

  • (Boolean)


673
674
675
# File 'lib/prism/node.rb', line 673

def contains_splat?
  flags.anybits?(ArgumentsNodeFlags::CONTAINS_SPLAT)
end

#copy(node_id: self.node_id, location: self.location, flags: self.flags, arguments: self.arguments) ⇒ Object

def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?arguments: Array) -> ArgumentsNode



650
651
652
# File 'lib/prism/node.rb', line 650

def copy(node_id: self.node_id, location: self.location, flags: self.flags, arguments: self.arguments)
  ArgumentsNode.new(source, node_id, location, flags, arguments)
end

#deconstruct_keys(keys) ⇒ Object

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



658
659
660
# File 'lib/prism/node.rb', line 658

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

#inspectObject

def inspect -> String



681
682
683
# File 'lib/prism/node.rb', line 681

def inspect
  InspectVisitor.compose(self)
end

#typeObject

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



686
687
688
# File 'lib/prism/node.rb', line 686

def type
  :arguments_node
end