Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re^3: Operator Precedence Parser

by Anonymous Monk
on Jun 19, 2014 at 22:38 UTC ( [id://1090520]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Operator Precedence Parser
in thread Operator Precedence Parser

Very nice code, much simpler & shorter than I expected. I tried to add an = (Perl or C internal-to-expression assignment) to the operators, though, lowest precedence & right-associative:

'='=> {prec=> 5,assoc=>'R',exec=>sub { print "DEBUG $_[0]=$_[1]\n"; $_[1]; }, function=>'asg'},

I added it to the operator pattern:

if (/\G\s*(\*\*|[=+\-*\/%\\])/gc)

and kind of defined the LHS variable

%var=(a=>101,b=>7,q=>'q');

but it fails because Function::evaluate tries to coerce the value, which I set to the variable name, into a number:

return $code->(map 0+$_,@{$self->{arguments}});

I think I have a workaround, but it looks like '=' is a special case because the LHS variable should not be evaluated before calling the assignment function.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1090520]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (6)
As of 2024-04-25 08:10 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found