Is there a refactoring tool to remove "with" blocks? For example convert

with Form1 do
begin
  Height := Blah;
  Blubb := Name;
end;

to

Form1.Height := Blah;
Blubb := Form1.Name;

where Form1 is a VCL TForm. Optimally it should work with Delphi 2007.

link|improve this question

3  
I don't think there's something like this, it requires a lot of parsing that needs to go down to a TObject decendant in order to achieve this... – Dorin Duminica Feb 15 at 10:29
From the fact that neither MMX nor the built-in Delphi refactoring seem to contain it I figured that the problem probably is harder than other refactorings. Bummer. :-) – Ulrich Gerhardt Feb 15 at 11:03
yeah... I feel like this is a new project that needs "taking care of past bad coding style"? (: – Dorin Duminica Feb 15 at 11:57
1  
@Smasher, as the compiler can resolve the with, so should do a refactoring. The result might not be what you expect. – Uwe Raabe Feb 15 at 16:27
2  
@Smasher: There is no such difficulty. The code compiles and does what it is directed to do. Any refactoring simply needs to reproduce the scoping rules that the compiler follows. The "dangers" you are thinking of stem from the fact that the debugger doesn't follow these rules properly itself when it comes to "with". "with" would be less of a problem (tho not entirely benign) if the debugger worked properly. – Deltics Feb 16 at 1:59
show 4 more comments
feedback

2 Answers

up vote 6 down vote accepted

...I think the last Castalia from Jacob Thurman/TwoDesk Software do the trick

link|improve this answer
feedback

One of the Castalia refactoring tools is named "Eliminate 'WITH'".

I can't comment on how well it works in non trivial code because I tend to avoid "with".

link|improve this answer
1  
+1 for avoiding "with" (: – Dorin Duminica Feb 15 at 11:56
... and because you were faster :) – TLama Feb 15 at 14:53
+1 of course. I accepted User0815's answer to support the SO newbies. :-) – Ulrich Gerhardt Feb 15 at 15:36
3  
I can live with that. The other answer is equally correct and just two minutes behind mine. – Bruce McGee Feb 15 at 16:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.