WebListFunc holds the per-function information for HTML source code listing.
| 201 | |
| 202 | // WebListFunc holds the per-function information for HTML source code listing. |
| 203 | type WebListFunc struct { |
| 204 | Name string |
| 205 | File string |
| 206 | Flat string |
| 207 | Cumulative string |
| 208 | Percent string |
| 209 | Lines []WebListLine |
| 210 | } |
| 211 | |
| 212 | // WebListLine holds the per-source-line information for HTML source code listing. |
| 213 | type WebListLine struct { |
nothing calls this directly
no outgoing calls
no test coverage detected