15

I'm looking to play with perl parser manipulation. It looks like the various B::Hooks modules are what people use. I was wondering:

  1. Best place to start for someone who has no XS experience (yet). Any relevant blog posts?

  2. How much work would be involved in creating a new operator, for example:

    $a~>one~>two~>three

~> would work like -> but it would not try to call on undef and would instead simply return undef to LHS.

Although a source filter would work -- I'm more interested in seeing how you can manipulate the parser at a deeper level.

8
  • 4
    That sounds like an interesting feature. :) May 23, 2015 at 16:32
  • I thought of it while getting annoyed doing if( $dom->at('div')->at('h1')) { in Mojo::DOM and getting can't call undefined becasue div didn't exist :)
    – LLFourn
    May 23, 2015 at 16:50
  • I have not figured this out yet but this looks promising: metacpan.org/pod/B::Utils
    – LLFourn
    May 24, 2015 at 16:05
  • 1
    Have you considered using autobox? A very simple package with a fundamental AUTOLOAD routine would suffice. You wouldn't have a new operator, but adding all possible methods there are to undef. This would probably have terrible performance impacts. Like this: use autobox UNDEF => 'SilentUndef'; … your code… package SilentUndef; sub AUTOLOAD {sub{}}. May 24, 2015 at 17:22
  • 2
    When I did some XS in the past (which I completely forgot at this point) I started from perldoc.perl.org/perlxstut.html For adding new operators, I would probably start from perldoc.perl.org/perlguts.html#Custom-Operators
    – polettix
    Sep 1, 2015 at 4:53

1 Answer 1

1

I don't believe you can add infix operators (operators whose operands are before and after the operator), much less symbolic ones (as opposed to named operators), but you could write an an op checker that replaces method calls. This means you could cause ->foo to behave differently. By writing your module as a pragma, you could limit the effect of your module to a lexical scope (e.g. { use mypragma; ...}).

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.