Blog post on extending attribute inference to more functions

Guillaume Piolat first.last at gmail.com
Tue Jul 19 09:55:52 UTC 2022


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.


More information about the Digitalmars-d-announce mailing list