SCRIPT  tests/vimfiles/line_continuation.vim
Sourced 1 time
Total time:   0.001076
 Self time:   0.000170

count  total (s)   self (s)
    1              0.000025 function! Echo() abort
                              echo 0
                              \ 1
                              echo 2
                              \  3
                              \ 4
                            endfunction
                            
    1   0.000933   0.000027 call Echo()
    1              0.000010 echo 5
                            \ 6
    1              0.000026 echo 7
                            \  8
                            \ 9

FUNCTION  Echo()
    Defined: tests/vimfiles/line_continuation.vim:1
Called 1 time
Total time:   0.000906
 Self time:   0.000906

count  total (s)   self (s)
    1              0.000647   echo 0 1
    1              0.000257   echo 2  3 4

FUNCTIONS SORTED ON TOTAL TIME
count  total (s)   self (s)  function
    1   0.000906             Echo()

FUNCTIONS SORTED ON SELF TIME
count  total (s)   self (s)  function
    1              0.000906  Echo()

