HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: //usr/share/doc/libparse-recdescent-perl/examples/demo_delete.pl
#!/usr/bin/perl -sw

# DELETABLE PRODUCTIONS

use Parse::RecDescent;

$grammar =
q{
	commands :	command(s)

	command  :	directive
		 |	evaluation

	directive:	'only prefix'
			    { $thisparser->{deleted} = {infix=>1,postfix=>1} }
		 |	'not prefix'
			    { $thisparser->{deleted}{prefix} = 1 }

	evaluation:	<reject: $thisparser->{deleted}{prefix}> op var var
				{ print "prefix $item[3] $item[2] $item[4]\n" }

	          |	<reject: $thisparser->{deleted}{infix}> var op var
				{ print "infix $item[2] $item[3] $item[4]\n" }

	          |	<reject: $thisparser->{deleted}{postfix}> var var op
				{ print "postfix $item[2] $item[4] $item[3]\n" }

	op        :	'+' | '-'

	var	  :	/(?!\d)\w+/
};

$parse = new Parse::RecDescent ($grammar);

while (<DATA>)
{
	$parse->commands($_);
}

__DATA__
a + b
+ a b
a b +
not prefix
a + b
+ a b
a b +
only prefix
a + b
+ a b
a b +
not prefix
a + b
+ a b
a b +