Subject: | use line argument ordering |
A use line of the form:
use Devel::Comments '###', ({ -file => 'my.log' });
... works properly, writing to 'my.log' and accepting only '###'
introducers.
A use line of the form:
use Devel::Comments ({ -file => 'parse.log' }), '###';
... does not work properly. It writes to 'my.log' but accepts
introducers of any length.
This is an important bug; but fixing it involves argument parsing,
currently done with chewing gum and baling wire. So it will probably be
put off until that is reworked.