Method: Code::Parser::Call#arguments
- Defined in:
- lib/code/parser/call.rb
#arguments ⇒ Object
78 79 80 81 82 83 84 |
# File 'lib/code/parser/call.rb', line 78 def arguments opening_parenthesis.ignore << whitespace? << ( whitespace? << argument << (whitespace? << comma << whitespace?).maybe ).repeat << whitespace? << closing_parenthesis.ignore.maybe end |