gitextract_2zthlp2p/ ├── .codecov.yml ├── .github/ │ └── workflows/ │ ├── CI.yml │ ├── CompatHelper.yml │ ├── JuliaNightly.yml │ └── TagBot.yml ├── .gitignore ├── LICENSE.md ├── Project.toml ├── README.md ├── coverage.jl ├── haml/ │ ├── files.hamljl │ ├── filetable.hamljl │ ├── flamegraph.hamljl │ ├── flamegraph.js │ ├── flamegraphitem.hamljl │ ├── index.hamljl │ ├── methods.hamljl │ ├── methodtable.hamljl │ ├── notfound.hamljl │ ├── reportheader.hamljl │ ├── sourcefile.hamljl │ └── statprofiler.css ├── src/ │ ├── HTML.jl │ ├── Reports.jl │ └── StatProfilerHTML.jl └── test/ ├── HTML.jl ├── Reports.jl ├── end-to-end.jl ├── fake-source.jl ├── golden/ │ ├── fake-source.jl-4c8b0079d11b2925585882f699dd2fdccff100a6.html │ ├── files.html │ ├── index.html │ ├── methods.html │ ├── notfound.html │ └── statprofiler.css └── runtests.jl