This doesn't really look like a 'proper' refactor to me. It's a blanket 'all strings and attributes' isn't it? How does this apply to 'real world' code?
1 - What if I'm using an external library so I have some exceptions?
2 - What if I want to keep strings with underscores in them? Can it detect those strings that are used to reference as attributes and those that aren't?
3 - What if I'm using an external library so I have some exceptions?
4 - What if I have two entirely separate 'classes'/prototypes but they share a common attribute name. What if I want to update one but not the other?
I've spent a lot of time writing in static and dynamic languages and I intuitively don't believe that you can do 'proper' refactors in dynamic languages (although it's not something I've gone out of my way to look into).
Perhaps not a 'proper' refactor. For that, check out Tern, mentioned below.
If you want deeper control, my examples are rather mundane. Check out rewrite-js linked in the post for a better example of stronger guarantees based on AST matching.
Regarding strings, that totally works. You can see in my example I have explicitly called out `node.type === 'String'` to catch those cases.
I agree that you can't do "proper refactoring" (to use your definition) in dynamic languages, but that doesn't mean the answer is to do everything manually. You could make the argument that the answer is to never use dynamic languages, but I feel that's infeasible when it comes to browser-based work.
1 - What if I'm using an external library so I have some exceptions?
2 - What if I want to keep strings with underscores in them? Can it detect those strings that are used to reference as attributes and those that aren't?
3 - What if I'm using an external library so I have some exceptions?
4 - What if I have two entirely separate 'classes'/prototypes but they share a common attribute name. What if I want to update one but not the other?
I've spent a lot of time writing in static and dynamic languages and I intuitively don't believe that you can do 'proper' refactors in dynamic languages (although it's not something I've gone out of my way to look into).
I'd love to be proved wrong.