jscodeshift icon indicating copy to clipboard operation
jscodeshift copied to clipboard

File comment is lost when removing first statement

Open sophiebits opened this issue 9 years ago • 8 comments

If you have

/**
 * @providesModule Foo.react
 */

var React = require('React');

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.

sophiebits avatar Aug 23 '15 18:08 sophiebits

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.

fkling avatar Aug 23 '15 21:08 fkling

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).

sophiebits avatar Aug 23 '15 21:08 sophiebits

I can work on it to detach the first comment a file from the first statement and add as a node. Is this desirable?

udnisap avatar Dec 19 '15 03:12 udnisap

@fkling What are your thoughts on adding a recipes section to the documentation (similar to this). I've found a few examples of use-cases in the past digging through the issues on this repo that would have been great to have documented.

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 avatar Jun 21 '16 01:06 DrewML

@DrewML: Sounds like an excellent idea to me!

fkling avatar Jun 21 '16 02:06 fkling

Hey,

By chance could someone take a look at this issue?

https://github.com/5to6/5to6-codemod/issues/18

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 avatar Jan 09 '17 16:01 slorber

@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 "underscore" to anything else (like "lodash") in the original source code so that the node is not removed and you will see that the comment is not duplicated.

ptbrowne avatar Jan 11 '17 09:01 ptbrowne

What is the rationale to attach comments to other nodes? Why can't they live as independent nodes?

danielo515 avatar May 29 '21 15:05 danielo515