/**
* Does some foo.
* @param blah Doesn't exist
* /
extern dec doSomeFoo(entity: TypeSpec.Reflection.Operation);
Clearly, blah doesn't exist. We have validation that would complain if blah did exist and we document it, but should we also complain if a documented thing doesn't exist? The idea is that these things come about via copy-paste errors (or now, could be CoPilot X errors!) and so this would be a clue that perhaps you didn't do what you intended.
Clearly,
blahdoesn't exist. We have validation that would complain if blah did exist and we document it, but should we also complain if a documented thing doesn't exist? The idea is that these things come about via copy-paste errors (or now, could be CoPilot X errors!) and so this would be a clue that perhaps you didn't do what you intended.