microsoft / microsoft/TypeScript
`satisfies` does not work on a variable called `type`
Nobody has claimed this yet.
- Dominant language
- Go
- Stars
- 111k
- Forks
- 14.3k
- Avg merge
- 1d 19h
- Merged PRs (30d)
- 117
Description
🔎 Search Terms
satisfies, type, ts1005
🕗 Version & Regression Information
This happens from 3.3.3333 to nightly.
satisfies was introduced in 4.9.
⏯ Playground Link
https://www.typescriptlang.org/play?#code/MYewdgzgLgBFCeAHApjAvDA5AD0wKDwRRggEMoBLCAMwuQhKgCcKwBzPIA
💻 Code
const type = 'x'
type satisfies string // '=' expected.(1005)
🙁 Actual behavior
Gives an '=' expected.(1005) error.
🙂 Expected behavior
For it to work like with any other variable of any other name, specially since it's a common variable name.
Additional information about the issue
This also happens with other TypeScript keywords like interface.
If I wrap type in parenthesis it works, is this expected behaviour? The Deno formatter removes it (prettier handles it correctly), should I report this to them.
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start with the linked Playground reproduction and the parser path for satisfies expressions followed by identifiers that are TypeScript keywords, such as type and interface. Confirm the behavior against the shown snippet; done means these variable names parse like other names without TS1005 while preserving existing keyword syntax.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- typescript
- Domain
- compilers
- Issue type
- Bug
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 38/100