diff options
author | Branislav ZahradnĂk <barney@cpan.org> | 2020-12-11 17:19:07 +0100 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2020-12-27 09:46:09 -0700 |
commit | 1c2e9449254ebd07b473cb641d8568dffc1ecbb0 (patch) | |
tree | a42d8d1664fd53400bea4f487330eb44c103b245 /perly.h | |
parent | 581f9a7a8ac03dde592c9c645423bcb369116e24 (diff) | |
download | perl-1c2e9449254ebd07b473cb641d8568dffc1ecbb0.tar.gz |
Distinguish C- and perly- literals - PERLY_EXCLAMATION_MARK
Diffstat (limited to 'perly.h')
-rw-r--r-- | perly.h | 21 |
1 files changed, 11 insertions, 10 deletions
@@ -143,15 +143,16 @@ extern int yydebug; NCRELOP = 342, SHIFTOP = 343, MATCHOP = 344, - UMINUS = 345, - REFGEN = 346, - POWOP = 347, - PREINC = 348, - PREDEC = 349, - POSTINC = 350, - POSTDEC = 351, - POSTJOIN = 352, - ARROW = 353 + PERLY_EXCLAMATION_MARK = 345, + UMINUS = 346, + REFGEN = 347, + POWOP = 348, + PREINC = 349, + PREDEC = 350, + POSTINC = 351, + POSTDEC = 352, + POSTJOIN = 353, + ARROW = 354 }; #endif @@ -203,6 +204,6 @@ int yyparse (void); /* Generated from: - * dc3a381751f2897cbaa6dc2f792cd125a225072206d399dd4981603f81f78a24 perly.y + * 3cfd0c6b00a7252ca445af346f4fab4fedfd3065533813882639354d90371d9d perly.y * acf1cbfd2545faeaaa58b1cf0cf9d7f98b5be0752eb7a54528ef904a9e2e1ca7 regen_perly.pl * ex: set ro: */ |