Subject: | Large __DATA__ sections quickly hit source code size limit |
The hard-coded limit of 1048576 bytes for source code (in PPI::Tokenizer) is easily tripped by a
small source file with a large __DATA__ section. It would be nice if one of the following things
cold be done:
* Replace the hard-coded 1048576 byte limit with something that can be overridden with an
environment variable or package-scoped variable or something.
...or...
* Disregard __DATA__ sections when enforcing source code size limits.
...or perhaps you could do both. Thanks.