SCRIPT  tests/vimfiles/dict.vim
Sourced 1 time
Total time:   0.001081
 Self time:   0.000162

count  total (s)   self (s)
    1              0.000022 let s:dict = {}
                            
    1              0.000018 function! s:dict.today() abort dict
                              echo strftime('%Y-%m-%d')
                            endfunction
                            
    1              0.000002 function! s:dict.main() abort dict
                              echo 'Hello, world!'
                            endfunction
                            
    1   0.000961   0.000041 call s:dict.main()

FUNCTION  1()
    Defined: tests/vimfiles/dict.vim:3
Called 0 times
Total time:   0.000000
 Self time:   0.000000

count  total (s)   self (s)
                              echo strftime('%Y-%m-%d')

FUNCTION  2()
    Defined: tests/vimfiles/dict.vim:7
Called 1 time
Total time:   0.000919
 Self time:   0.000919

count  total (s)   self (s)
    1              0.000918   echo 'Hello, world!'

FUNCTIONS SORTED ON TOTAL TIME
count  total (s)   self (s)  function
    1   0.000919             2()
                             1()

FUNCTIONS SORTED ON SELF TIME
count  total (s)   self (s)  function
    1              0.000919  2()
                             1()

