this post was submitted on 21 Nov 2024
289 points (90.7% liked)
Programmer Humor
32557 readers
440 users here now
Post funny things about programming here! (Or just rant about your favourite programming language.)
Rules:
- Posts must be relevant to programming, programmers, or computer science.
- No NSFW content.
- Jokes must be in good taste. No hate speech, bigotry, etc.
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
IMO comments should never ever be parsed under any circumstances but I probably don't know enough to really speak on this
It's quite useful to parse comments and generate documentation from them, either as plain old hypertext or in your editor with LSP.
That sounds fine if you have something reading the file independently. But the actual executable code should not be able to access its own comments.
Comments aren't normally accessible unless you (independently) open and read the source code file as you would with any arbitrary file.