Branch: refs/heads/blead
Home: https://github.com/Perl/perl5
Commit: 8bd31da072706b4f51a1d682a5f3b6d002cc3d60
https://github.com/Perl/perl5/commit/8bd31da072706b4f51a1d682a5f3b6d002cc3d60
Author: Paul "LeoNerd" Evans <[email protected]>
Date: 2022-12-16 (Fri, 16 Dec 2022)
Changed paths:
M perl.h
Log Message:
-----------
Add comment to infix operator precedence enum about when we can/can't change
the numbers
Commit: 10890a8f1dc9c4d977bed9253e5d2527078c4bf9
https://github.com/Perl/perl5/commit/10890a8f1dc9c4d977bed9253e5d2527078c4bf9
Author: Paul "LeoNerd" Evans <[email protected]>
Date: 2022-12-16 (Fri, 16 Dec 2022)
Changed paths:
M perl.h
M perly.act
M perly.h
M perly.tab
M perly.y
M toke.c
Log Message:
-----------
Define five new operator precedence levels
Assignment operators (`==`) were missing, as were both the logical and
the low-precedence shortcutting OR and AND operators (`&&`, `||`,
`and`, `or`)
Also renumbered them around somewhat to even out the spacing. This is
fine during a development cycle.
Also renamed the tokenizer/parser symbol names from "PLUG*OP" to
"PLUGIN_*_OP" for better readability.
Compare: https://github.com/Perl/perl5/compare/bab261c9114a...10890a8f1dc9