I am currently gettin' my hands dirty on some Perl6. Specifically I am trying to write a Fortran parser based on grammars (the Fortran::Grammar module)
For testing purposes, I would like to have the possiblity to convert a Match
object into a JSON-serializable Hash
.
Googling / official Perl6 documentation didn't help. My apologies if I overlooked something.
My attempts so far:
- I know that one can convert a
Match $m
to aHash
via$m.hash
. But this keeps nestedMatch
objects. - Since this just has to be solvable via recursion, I tried but gave up in favor of asking first for the existance of a simpler/existing solution here
- Dealing with
Match
objects' contents is obviously best accomplished viamake
/made
. I would love to have a super simpleActions
object to hand to.parse
with a default method for all matches that basically just does amake $/.hash
or something the like. I just have no idea on how to specify a default method.
Here's an action class method from one of my Perl 6 projects, which does what you describe.
It does almost the same as what Christoph posted, but is written more verbosely (and I've added copious amounts of comments to make it easier to understand):
Notes:
( )
inside the grammar) - only named captures (e.g.<foo>
or<foo=bar>
) are used to build the Hash tree. It could be amended to handle them too, depending on what you want to do with them. Keep in mind that:$/.hash
gives the named captures, as aMap
.$/.list
gives the positional captures, as aList
.$/.caps
(or$/.pairs
) gives both the named and positional captures, as a sequence ofname=>submatch
and/orindex=>submatch
pairs.{ make ... }
block inside the rule in the grammar (assuming that you never intentionally want tomake
an undefined value), or by adding a method with the rule's name to the action class.