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
Hi , Great project you got here. I just want to know how can I get which line and column this node at original source file?
The text was updated successfully, but these errors were encountered:
Hey @susiwen8, it seems this currently only exists on the source file. On any node, do:
const lineAndColumn = node.getSourceFile().getLineAndColumnAtPos(node.getStart());
getStart() returns the first token pos within the node (excluding jsdocs... provide getStart(true) to get the start position with js docs)
getStart()
getStart(true)
Sorry, something went wrong.
@dsherret Thanks getLineAndColumnAtPos is exactly what I need.
getLineAndColumnAtPos
No branches or pull requests
Hi , Great project you got here. I just want to know how can I get which line and column this node at original source file?
The text was updated successfully, but these errors were encountered: