Comment as post – understanding wp_list_comments

checkout the comment_reply_link function…

An example would be:

comment_reply_link(
    array_merge(
        $args,
        array(
            'depth' => $depth,
            'max_depth' => $args['max_depth'],
        )
    )
);