global

def after_opener_state(token)

def after_opener_state(token)
  if handle_closer_token(token)
    finish_or_find_next_block_if_incorrect!
  elsif pipe_token?(token)
    finalize_pending_tokens!
    @state = :after_beginning_of_args
  else
    pending_tokens << token
    handle_opener_token(token)
    @state = :after_beginning_of_body unless token.type == :on_sp
  end
end