This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
minor tweaks to pods and toke.c comments
[perl5.git] / perly.h
1 #ifdef PERL_CORE
2 #define WORD 257
3 #define METHOD 258
4 #define FUNCMETH 259
5 #define THING 260
6 #define PMFUNC 261
7 #define PRIVATEREF 262
8 #define FUNC0SUB 263
9 #define UNIOPSUB 264
10 #define LSTOPSUB 265
11 #define LABEL 266
12 #define FORMAT 267
13 #define SUB 268
14 #define ANONSUB 269
15 #define PACKAGE 270
16 #define USE 271
17 #define WHILE 272
18 #define UNTIL 273
19 #define IF 274
20 #define UNLESS 275
21 #define ELSE 276
22 #define ELSIF 277
23 #define CONTINUE 278
24 #define FOR 279
25 #define LOOPEX 280
26 #define DOTDOT 281
27 #define FUNC0 282
28 #define FUNC1 283
29 #define FUNC 284
30 #define UNIOP 285
31 #define LSTOP 286
32 #define RELOP 287
33 #define EQOP 288
34 #define MULOP 289
35 #define ADDOP 290
36 #define DOLSHARP 291
37 #define DO 292
38 #define HASHBRACK 293
39 #define NOAMP 294
40 #define LOCAL 295
41 #define MY 296
42 #define PREC_LOW 297
43 #define OROP 298
44 #define ANDOP 299
45 #define NOTOP 300
46 #define ASSIGNOP 301
47 #define OROR 302
48 #define ANDAND 303
49 #define BITOROP 304
50 #define BITANDOP 305
51 #define SHIFTOP 306
52 #define MATCHOP 307
53 #define UMINUS 308
54 #define REFGEN 309
55 #define POWOP 310
56 #define PREINC 311
57 #define PREDEC 312
58 #define POSTINC 313
59 #define POSTDEC 314
60 #define ARROW 315
61 #endif /* PERL_CORE */
62
63 typedef union {
64     I32 ival;
65     char *pval;
66     OP *opval;
67     GV *gvval;
68 } YYSTYPE;