We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Program.range
Flow version: 0.138.0
When parsing " a ", other parsers like babel/espree(EDIT: espree has {start:0, end:3, range: [1,2]})/acorn returns Program.range equals to [0, 3]
" a "
babel
espree
{start:0, end:3, range: [1,2]}
acorn
[0, 3]
> require('flow-parser').parse(' a ').range [ 1, 2 ]
The text was updated successfully, but these errors were encountered:
Chore: Add tests and comments (refs #349)
cd1d13e
No branches or pull requests
Flow version: 0.138.0
Expected behavior
When parsing
" a "
, other parsers likebabel
/espree
(EDIT: espree has{start:0, end:3, range: [1,2]}
)/acorn
returnsProgram.range
equals to[0, 3]
Actual behavior
The text was updated successfully, but these errors were encountered: