Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Please bring ! to JSDoc TS, in a way or another #60968

Closed
6 tasks done
WebReflection opened this issue Jan 13, 2025 · 5 comments
Closed
6 tasks done

Please bring ! to JSDoc TS, in a way or another #60968

WebReflection opened this issue Jan 13, 2025 · 5 comments
Labels
Duplicate An existing issue was already created

Comments

@WebReflection
Copy link

πŸ” Search Terms

"just ! does not work as search", "I am not sure how ! is named in here"

βœ… Viability Checklist

⭐ Suggestion

Apologies I flagged last two points because related links are all about TS ... well, this is about JS instead, or better, JSDoc TS flavor, and I don't know better to flag this issue but please allow me to explain:

const map = new Map<string,{count:number}>;

const key = 'any key';
if (!map.has(key))
  map.set(key, {count: 0});
map.get(key).count++;
// ^^^^^^^^^

Error: Object is possibly 'undefined'.

Now, if I am a TS developer I could easily fix that, whenever I am sure the Map prototype is not poisoned in my env and everything is awesome, as such:

map.get(key)!.count++;

But as JS developer I really don't have many options ... because:

  • the example is simple for this issue sake, using a map.get(key) instead of using map.has(key) can't survive any falsy values, I want my map to be robust against all the odds
  • re-setting each time what I maybe got from map.get might break insertion order and it will definitely do more operations than needed, when the key was already known
  • even if I don't understand 100% reasons that is happening, I'd ove to tell JSDoc TS that such operation is fine and expected to return whatever that map reference returns

Proposal

I know I can force-cast stuff in JSDoc TS by using:

/** @type {{count:number}} */(map.get(key)).count++;

but you can see that wouldn't play well repeatedly and it's quite just a copy & paste boring exercise from a DX point of view, so how about a comment able to explicitly tell TS that such operation is the equivalent of a ! suffix?

  • /** @safe */(map.get(key)) could work
  • /** @! */(map.get(key)) could work too, but I feel like it's a stretch over the @ notation
  • /** @infer */(map.get(key)) could work too

As summary, is there any way make people in the JS world satisfy the ! equivalent expectation in TS? 'cause like I've recently posted, it easily brings JS developers to just use ? instead, which is a slippery slope because while it works under TS parsing goals, it fully changes the semantic of the code where a ! does not change semantics, while ? does and everything after that might be, or not, defined.

Thanks in advance for either pointing me at the already opened discussion or to consider such improvement for raw JS users, as that warning is more a curse than a help πŸ‘‹

πŸ“ƒ Motivating Example

if JS folks using JSDoc TS are forced to simplify their troubles via ? instead of the unavailable ! in ECMAScript syntax, more things can fail because a ? passes TS checks but can fail at JS checks after or lazily out of the different runtime return value a ? can provide once executed.

πŸ’» Use Cases

  1. What do you want to use this for? every time I am sure my map, WeakMap, arrary.at(...), or any similar case should never be ignored by me adding just an ? as that's the meaning of that syntax: ignore
  2. What shortcomings exist with current approaches? no idea
  3. What workarounds are you using in the meantime? many and this is super annoying from a JS developer perspective
@MartinJohns
Copy link
Contributor

Duplicate of #23405.

FYI, ! is called the non-null assertion operator.

@WebReflection
Copy link
Author

@MartinJohns thanks ... and glad to see nothing happened since 2018 so maybe this was worth it to signal this issue is still out and live πŸ˜…

I also think not-null is slightly misleading because a map could have a null value in it, or even an undefined one, but of course WeakMap<WeakKey,undefined|null|number> is not a common situation out there ... yet in here I am proposing a safe alternative that would disambiguate same way ! does (I suppose) on even convoluted use cases ... or does it?

@MartinJohns
Copy link
Contributor

would disambiguate same way !

No idea what you mean. All the non-null assertion operator does is remove undefined and null from the type, so if you have undefined | null | number you end up with number.

@RyanCavanaugh RyanCavanaugh added the Duplicate An existing issue was already created label Jan 13, 2025
@WebReflection
Copy link
Author

@MartinJohns great, if that makes JSDoc TS and TS happy, I'm fine with it, as the narrowing of undefined and null can be done when no ! is used, so it all would work at the end, thanks.

@typescript-bot
Copy link
Collaborator

This issue has been marked as "Duplicate" and has seen no recent activity. It has been automatically closed for house-keeping purposes.

@typescript-bot typescript-bot closed this as not planned Won't fix, can't repro, duplicate, stale Jan 16, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Duplicate An existing issue was already created
Projects
None yet
Development

No branches or pull requests

4 participants