I could be mistaken, but I don't think that CWEB supports documenting
what isn't in the program; it only supports documenting what you did
put in the program.
Is there any version of web that does support the practice of documenting
discarded code?
--
Ignorantly,
Allan Adler <a...@zurich.csail.mit.edu>
* Disclaimer: I am a guest and *not* a member of the MIT CSAIL. My actions and
* comments do not reflect in any way on MIT. Also, I am nowhere near Boston.
% I could be mistaken, but I don't think that CWEB supports documenting
% what isn't in the program; it only supports documenting what you did
% put in the program.
You can create chunks which you don't include in the final program.
cweave will warn you about them, but ctangle won't care.
--
Patrick TJ McPhee
North York Canada
pt...@interlog.com
> Is there any version of web that does support the practice of documenting
> discarded code?
I'm only familar with noweb. The way to do it there is to put the
code in a chunk that isn't included in the generated code. For
example
<<*>>=
...
@
<<unused code>>=
...
@
--
Joe Riel