-
paulish committed revision 824 to the Jedi Code Format SVN repository, changing 33 files.
2009-10-21 08:08:52 UTC by paulish
-
I have found many parts of my code where conditional defines are breaking the Jedi Code Formatter parser.
Here's an easy way to kill the parser:
type
TFoo = class({$ifdef A}BaseA{$else}BaseB{$endif})
The same thing is true of ifdefs inside a try/except block:
try
....
except
{$ifdef A}
DoSomething;
{$else}.
2009-10-20 15:31:03 UTC by wpostma
-
Okay I figured it out. I had "*.pas" in the extensions edit box instead of merely "pas". Since the.
2009-10-20 15:03:43 UTC by wpostma
-
Why does JCFGui tell me "Nothing done" when I select a directory
and pick "All files in directory"? What is up with that?
This product will do a single file, and that's it. None of the other options work at all. Ver 2.43 January 2009.
Warren.
2009-10-20 14:39:38 UTC by wpostma
-
Hûh??.
2009-10-20 14:39:08 UTC by akkiemalus
-
oh NOW it works.
2009-10-20 14:38:03 UTC by wpostma
-
test. cannot post to this forum.
2009-10-20 14:37:26 UTC by wpostma
-
Can I just recompile the BPL or is 2010 different enough that it needs a rewrite to integrate JCF into the IDE?.
2009-10-14 00:29:51 UTC by kgmccoy
-
I have following code:
if a then
b
else
c;
JCF wrap b and c into begin end block:
if a then
begin
b
end else
begin
c;
end;
How can I avoid this? Thanks.
2009-10-11 11:57:33 UTC by simpletk
-
Can Jedi formatting be applied to Inno setup scripts? I believe it uses Delphi v5 pascal.
2009-10-08 20:45:30 UTC by omnisoftware