Parser-code-generation-work
Parser code generation
Introduction
This document has examples of parser code generation for different programming languages.
Raku class code
FunctionalParsers
In this section we generate Raku parser code that uses the functions of this package, "FunctionalParsers".
use FunctionalParsers;
use FunctionalParsers::EBNF;
my $ebnfCode = q:to/END/;
<digit> = '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' ;
<number> = <digit> , { <digit> } <@ &{ $_.flat.join } ;
<top> = <number> ;
END
my $res = parse-ebnf($ebnfCode, <CODE>, target => 'Raku::Class');
$res.head.tail;
Let us get (evaluated) class of the code above:
my $class = parse-ebnf($ebnfCode, <EVAL>, target => 'Raku::Class', parser-name => 'MyFP');
Here we create an instance of the obtained class and parse with it:
$class.new.parser.('3234'.comb);
Here we generate the parser class code again, but here we place it into an "as-is" Markdown cell:
parse-ebnf($ebnfCode, <CODE>, target => 'Raku::Class').head.tail;
Grammar
In this sub-section we generate code for Raku's built-in grammars.
Here we generate grammar class and place it into an "as-is" Markdown cell:
parse-ebnf($ebnfCode, <CODE>, target => 'Raku::Grammar', parser-name => 'MyFP').head.tail;
Here we generate the grammar code and evaluate it:
my $gr = parse-ebnf($ebnfCode, <EVAL>, target => 'Raku::Grammar', parser-name => 'MyGr');
Here we parse with the grammar:
$gr.parse('944'.comb);
Wolfram Language code
In this section we generate Wolfram Language (WL) parsers code. (WL is also known as "Mathematica".)
FunctionalParsers
In this sub-section generate code for the WL paclet "AntonAntonov/FunctionalParsers" (which corresponds to this Raku package "FunctionalParsers".)
Here we transform the EBNF code above to have WL function:
my $ebnfCodeWL = $ebnfCode.subst('$_.flat.join', 'StringJoin@*Flatten');
Here we generate WL code:
parse-ebnf($ebnfCodeWL, <CODE>, target => 'WL::Code').head.tail.subst(/';' \s* /,";\n"):g;
GrammarRules
In this sub-section we generate code for WL's built-in GrammarRules.
parse-ebnf($ebnfCodeWL, <CODE>, target => 'WL::Grammar').head.tail;