Method: Prism::CallNode#arguments
- Defined in:
- lib/prism/node.rb
#arguments ⇒ Object (readonly)
Represents the arguments to the method call. These can be any [non-void expressions](github.com/ruby/prism/blob/main/docs/parsing_rules.md#non-void-expression).
foo(bar)
^^^
2758 2759 2760 |
# File 'lib/prism/node.rb', line 2758 def arguments @arguments end |