diff options
author | Stephen McCamant <smcc@mit.edu> | 1999-07-23 10:55:22 -0500 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-07-26 10:44:11 +0000 |
commit | fad39ff13c300fe483c6155ea2883280e12fc89c (patch) | |
tree | 5ced2802fa81825ad5bc148be165aa3a8e20a7ac /perly.h | |
parent | 43192e07925c626b8d615aff545160df8bd7c3f8 (diff) | |
download | perl-fad39ff13c300fe483c6155ea2883280e12fc89c.tar.gz |
allow arrow omission in $foo[10]->('foo') etc. (but not in
foo()->()); rework grammar to remove conflicts
Message-ID: <14232.54970.771570.548676@alias-2.pr.mcs.net>
Subject: [PATCH _57, long] Re: optional arrow asymmetry
p4raw-id: //depot/perl@3767
Diffstat (limited to 'perly.h')
-rw-r--r-- | perly.h | 37 |
1 files changed, 19 insertions, 18 deletions
@@ -39,24 +39,25 @@ #define NOAMP 294 #define LOCAL 295 #define MY 296 -#define OROP 297 -#define ANDOP 298 -#define NOTOP 299 -#define ASSIGNOP 300 -#define OROR 301 -#define ANDAND 302 -#define BITOROP 303 -#define BITANDOP 304 -#define SHIFTOP 305 -#define MATCHOP 306 -#define UMINUS 307 -#define REFGEN 308 -#define POWOP 309 -#define PREINC 310 -#define PREDEC 311 -#define POSTINC 312 -#define POSTDEC 313 -#define ARROW 314 +#define PREC_LOW 297 +#define OROP 298 +#define ANDOP 299 +#define NOTOP 300 +#define ASSIGNOP 301 +#define OROR 302 +#define ANDAND 303 +#define BITOROP 304 +#define BITANDOP 305 +#define SHIFTOP 306 +#define MATCHOP 307 +#define UMINUS 308 +#define REFGEN 309 +#define POWOP 310 +#define PREINC 311 +#define PREDEC 312 +#define POSTINC 313 +#define POSTDEC 314 +#define ARROW 315 #endif /* PERL_CORE */ typedef union { |