class Unparser::Emitter::UnparenthesizedArguments

Private Instance Methods

dispatch() click to toggle source
# File lib/tweezer/unparser/emitter/unparenthesized_arguments.rb, line 8
def dispatch
  return if children.empty?
  write(' ')
  delimited_plain(effective_arguments)
end