[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
autogsdoc, once more
From: |
Chris B. Vetter |
Subject: |
autogsdoc, once more |
Date: |
Mon, 5 May 2003 09:34:01 -0700 |
Hi,
there is a "bug" in autogsdoc when you have the following scenario:
// "Forward" declaration
@protocol Foo, Bar;
/**
* <unit><heading>Foo protocol description</heading>
* ...
*/
@protocol Foo
- (id) foo;
- (id <Bar>) bar;
@end
/**
* <unit><heading>Bar protocol description</heading>
* ...
*/
@protocol Bar
- (id <Foo>) foo;
- (id) bar;
@end
autogsdoc will dump
Protocols.h:85 (Foo): interface with bogus line ... we expect methods
Protocols.h:129 (Foo): @method list with unknown directive 'protocol'
and screw up the protocol description for the first (here Foo) protocol.
--
Chris
- autogsdoc, once more,
Chris B. Vetter <=