-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
Comments
Duplicate of #23405. FYI, |
@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 |
No idea what you mean. All the non-null assertion operator does is remove |
@MartinJohns great, if that makes JSDoc TS and TS happy, I'm fine with it, as the narrowing of |
This issue has been marked as "Duplicate" and has seen no recent activity. It has been automatically closed for house-keeping purposes. |
π 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:
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:
But as JS developer I really don't have many options ... because:
map.get(key)
instead of usingmap.has(key)
can't survive any falsy values, I want my map to be robust against all the oddsmap.get
might break insertion order and it will definitely do more operations than needed, when the key was already knownmap
reference returnsProposal
I know I can force-cast stuff in JSDoc TS by using:
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 tooAs 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
?
as that's the meaning of that syntax: ignoreThe text was updated successfully, but these errors were encountered: