diff options
author | Larry Wall <lwall@netlabs.com> | 1994-10-17 23:00:00 +0000 |
---|---|---|
committer | Larry Wall <lwall@netlabs.com> | 1994-10-17 23:00:00 +0000 |
commit | a0d0e21ea6ea90a22318550944fe6cb09ae10cda (patch) | |
tree | faca1018149b736b1142f487e44d1ff2de5cc1fa /perly.h | |
parent | 85e6fe838fb25b257a1b363debf8691c0992ef71 (diff) | |
download | perl-a0d0e21ea6ea90a22318550944fe6cb09ae10cda.tar.gz |
perl 5.000perl-5.000
[editor's note: this commit combines approximate 4 months of furious
releases of Andy Dougherty and Larry Wall - see pod/perlhist.pod for
details. Andy notes that;
Alas neither my "Irwin AccuTrack" nor my DC 600A quarter-inch cartridge
backup tapes from that era seem to be readable anymore. I guess 13 years
exceeds the shelf life for that backup technology :-(.
]
Diffstat (limited to 'perly.h')
-rw-r--r-- | perly.h | 101 |
1 files changed, 52 insertions, 49 deletions
@@ -1,54 +1,57 @@ #define WORD 257 #define METHOD 258 -#define THING 259 -#define PMFUNC 260 -#define PRIVATEREF 261 -#define LABEL 262 -#define FORMAT 263 -#define SUB 264 -#define PACKAGE 265 -#define HINT 266 -#define WHILE 267 -#define UNTIL 268 -#define IF 269 -#define UNLESS 270 -#define ELSE 271 -#define ELSIF 272 -#define CONTINUE 273 -#define FOR 274 -#define LOOPEX 275 -#define DOTDOT 276 -#define FUNC0 277 -#define FUNC1 278 -#define FUNC 279 -#define RELOP 280 -#define EQOP 281 -#define MULOP 282 -#define ADDOP 283 -#define DOLSHARP 284 -#define DO 285 -#define LOCAL 286 -#define DELETE 287 -#define HASHBRACK 288 -#define NOAMP 289 -#define OROP 290 -#define ANDOP 291 -#define LSTOP 292 -#define OROR 293 -#define ANDAND 294 -#define BITOROP 295 -#define BITANDOP 296 -#define UNIOP 297 -#define SHIFTOP 298 -#define MATCHOP 299 -#define UMINUS 300 -#define REFGEN 301 -#define POWOP 302 -#define PREINC 303 -#define PREDEC 304 -#define POSTINC 305 -#define POSTDEC 306 -#define ARROW 307 +#define FUNCMETH 259 +#define THING 260 +#define PMFUNC 261 +#define PRIVATEREF 262 +#define LABEL 263 +#define FORMAT 264 +#define SUB 265 +#define ANONSUB 266 +#define PACKAGE 267 +#define USE 268 +#define WHILE 269 +#define UNTIL 270 +#define IF 271 +#define UNLESS 272 +#define ELSE 273 +#define ELSIF 274 +#define CONTINUE 275 +#define FOR 276 +#define LOOPEX 277 +#define DOTDOT 278 +#define FUNC0 279 +#define FUNC1 280 +#define FUNC 281 +#define RELOP 282 +#define EQOP 283 +#define MULOP 284 +#define ADDOP 285 +#define DOLSHARP 286 +#define DO 287 +#define LOCAL 288 +#define HASHBRACK 289 +#define NOAMP 290 +#define OROP 291 +#define ANDOP 292 +#define NOTOP 293 +#define LSTOP 294 +#define ASSIGNOP 295 +#define OROR 296 +#define ANDAND 297 +#define BITOROP 298 +#define BITANDOP 299 +#define UNIOP 300 +#define SHIFTOP 301 +#define MATCHOP 302 +#define UMINUS 303 +#define REFGEN 304 +#define POWOP 305 +#define PREINC 306 +#define PREDEC 307 +#define POSTINC 308 +#define POSTDEC 309 +#define ARROW 310 typedef union { I32 ival; char *pval; |