On Monday, 18 July 2022 at 22:48:27 UTC, Bastiaan Veelo wrote:
I abuse `@deprecated` for that purpose in my own code, to remind myself of some holes that need patching.

— Bastiaan.

I put tags in comments, to text search later.
Usually:

```
    // TODO:   actually blocks a release
    // PERF:   a TODO but performance related
    // MAYDO:  a TODO but too tiring
    // HACK:   a TODO for a bad workaround
    // FUTURE: a TODO but long term
```

A way to have them be "first-class" would be interesting. Though, technically you can with UDAs.

Reply via email to