> is there a way to do a refactoring that takes all instances of a
> symbol and renames them?
>
> So if I had a symbol #Foo in a method, rename it and all other uses of
> #Foo to #Bar.


The menu "refactor | rewrite code" and

     RBParseTreeRewriter new
            replace: '#Foo' with: '#Bar';
            yourself

does a parser tree replacement.

Lukas

-- 
Lukas Renggli
www.lukas-renggli.ch

_______________________________________________
Pharo-project mailing list
[email protected]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

Reply via email to