All the Perl that's Practical to Extract and Report
You can subclass pragma.pm and it does the right thing. It also uses namespaces so someone else's pragma won't stomp on your pragma. Woot.
use XXX 'foo' => 1; ...no XXX 'foo'; package XXX; use pragma -base; 1;