I'm trying to use the LimitedPowers Context, and am finding that it is requiring a different incantation than I expect. I expected that the following would work:
loadModules("parserLimitedContext.pl");
Context("LimitedContext::NoBaseE()");
or, alternately, the same thing omitting the () at the end of NoBaseE
. However, I'm finding that doesn't work (it fails with an unknown context error), and that the following does loadModules("parserLimitedContext.pl");
$c = Context("Numeric")->copy();
LimitedPowers::NoBaseE( $c );
Context($c);
If anyone can explain what I'm missing (that is, why the latter works and the former doesn't), I'd be much appreciative.Thanks,
Gavin