-
Notifications
You must be signed in to change notification settings - Fork 483
New issue
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
File comment is lost when removing first statement #44
Comments
Mmh. I assume the comment is attached to the VarableDeclaration, so when you remove the node, the comment is removed as well. You could save the comment first and reattach it to the file node: http://felix-kling.de/esprima_ast_explorer/#/kGspd21ZnD/1. Maybe we can do something to make this easier, but not sure yet what. We should definitely provide an API that makes it easy to get, add and remove comments on nodes. |
Yeah, I figured as much. Maybe we could just special-case the first comment? It seems rare that you'd ever want to move or drop it (especially at FB). |
I can work on it to detach the first comment a file from the first statement and add as a node. Is this desirable? |
@fkling What are your thoughts on adding a I know there are already links to the codemod repos in the bottom of the readme, but specific recipes could be an added bonus. |
@DrewML: Sounds like an excellent idea to me! |
Hey, By chance could someone take a look at this issue? The problem here for me is that sometimes the codemod does try to restore the leading comment, but that leading comment was not removed in the first place, leading to a duplicate leading comment. I'm not a JSCodeShift/Recast expert but couldn't we make sure the actual leading comment gets removed before restoring it, or restoring it only when necessary? |
@slorber Yes it seems that if the first node was not modified, the first comment would be duplicated. The solution is to check if the first node has changed : http://astexplorer.net/#/hb6iLO9hTe/48 Modify |
What is the rationale to attach comments to other nodes? Why can't they live as independent nodes? |
If you have
and remove the require statement, the docblock is lost. This causes build errors and I had to manually fix up a bunch of files with the last codemod I wrote to restore these.
The text was updated successfully, but these errors were encountered: