Microsoft/TypeScript

Generic syntax ambiguity is handled incorrectly

Open

#60.874 aperta il 29 dic 2024

Vedi su GitHub
 (1 commento) (1 reazione) (0 assegnatari)TypeScript (6726 fork)batch import
BugDomain: ParserHelp Wanted

Metriche repository

Star
 (48.455 star)
Metriche merge PR
 (Merge medio 6g 17h) (9 PR mergiate in 30 g)

Descrizione

🔎 Search Terms

generic syntax ambiguity

🕗 Version & Regression Information

  • I was unable to test this on prior versions because there is no online tooling for it

⏯ Playground Link

https://www.typescriptlang.org/play/?#code/MYewdgzgLgBAhjAvDAjAGhgIyTATB4HAZgwBMcAWDAUxwFYBuAKFEhABtqA6dkAcwAUCADxYMAwgD4YA8gDIY1AJQrmQA

💻 Code

const a = 1, b = 2, c = 3, d = 4, e = 5;
console.log(a < b, (c > (d & e)));

🙁 Actual behavior

This expression is not callable.

🙂 Expected behavior

true false

Additional information about the issue

While there might be some justification for why

const a = 1, b = 2, c = 3, d = 4, e = 5;
console.log(a < b, c > (d & e));

doesn't work as it did in JS, in the provided example there isn't even any disambiguity.

Guida contributor