mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-16 05:58:32 -06:00
* Everything mostly works A couple of mixed, nested references don't work yet. The scanner+parser interaction is wrong, the parser consumes one too many spaces, and the checker+services code needs a little cleanup. * Cleanup 1. I decided that correctly parsing a#b.c, an entity name containing an instance reference, is not worth the work. 2. I made the scanner, at least the jsdoc part, emit a # token, and provided a reScanPrivateIdentifier in order to convert #a to # a. 3. I cleaned up the code in the checker. 2. Unrelated: I added a missing space in linkPart display. * Cleanup lint + var naming * investigate+clean up a couple of TODOs * Fix lint in utilities.ts * change name to JSDocMemberName * address PR comments