-
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
Types defining Symbol.hasInstance
should be eligible to use with the instanceof
operator
#39064
Comments
I have a tested and working branch that implements this proposal here: https://github.com/lazytype/TypeScript/commit/0c226a775f63f4dd97f6a65422707d4231787188 Holding off on creating a PR until this issue gets tagged with the "Backlog" milestone, per the contributor guidelines. |
See also: #17360 |
The typescript compiler also spuriously complains when the lhs of
It gives this error:
|
Why was this issue marked as "Suggestion"? I think it should be labeled as bug. @RyanCavanaugh |
❤️ Thanks for finally fixing the bug @rbuckton. I can finally delete this branch. |
TypeScript Version: 3.9.4
As specified here, https://tc39.es/ecma262/#sec-instanceofoperator, it should be sufficient for an object to define a function for the
Symbol.hasInstance
well-known symbol in order to be used as the right-hand side of theinstanceof
operator.It seems like this was intended to be implemented based on these comments: #12728 (comment)
but for whatever reason that didn't happen it in the PR
Search Terms: Symbol.hasInstance
Code
Expected behavior:
No type-errors
Actual behavior:
Playground Link: Playground Link
Related Issues:
The text was updated successfully, but these errors were encountered: