Bug: Parser: End range of Program
differs from Espree
#11026
Labels
awaiting response
Issues waiting for a reply from the OP or another party
bug
Something isn't working
Before You File a Bug Report Please Confirm You Have Done The Following...
Relevant Package
parser
Playground Link
https://typescript-eslint.io/play/#ts=5.7.2&showAST=es&fileType=.tsx&code=PTAEDMHtIKBgPOJQCMCGAnGQ&eslintrc=N4KABGBEBOCuA2BTAzpAXGYBfEWg&tsconfig=N4KABGBEDGD2C2AHAlgGwKYCcDyiAuysAdgM6QBcYoEEkJemy0eAcgK6qoDCAFutAGsylBm3TgwAXxCSgA&tokens=false
Repro Code
ESLint Config
tsconfig
Expected Result
The end location of
Program
differs between@typescript-eslint/parser
and Espree.Both TS-ESLint and Espree set the start location of
Program
as the first token, excluding whitespace and comments.Espree sets the end location as the last token, also excluding whitespace and comments. However,
@typescript-eslint/parser
does not match that behavior - end location ofProgram
is the end of the file.I assume that
@typescript-eslint/parser
is aiming to align with Espree, and therefore this difference is unintentional.Acorn does not exclude whitespace/comments from either start or end location. It's unfortunate the the 2 most-used ESTree-compatible parsers do not match each others' behavior, and personally I prefer the Acorn way - I think it's surprising that you can have comments which have locations outside the
Program
which contains them. But I imagine quite possible that neither Acorn nor Espree may want to make a breaking change.Examples:
Actual Result
See above.
Additional Info
No response
Versions
@typescript-eslint/parser
8.29.0
The text was updated successfully, but these errors were encountered: