File: a60-ptab.h

package info (click to toggle)
nase-a60 0.20a-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 2,580 kB
  • ctags: 1,111
  • sloc: ansic: 10,343; yacc: 965; sh: 360; lex: 336; makefile: 249
file content (63 lines) | stat: -rw-r--r-- 1,082 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
typedef union {
	long itype;
	double rtype;
	char *str;
	TREE *tree;
	SYMTAB *sym;
	EXPR *expr;
	BOUND *bound;
	LHELM *lhelm;
	MINDEX *mindex;
	FORELM *forelm;
	FORSTMT *forstmt;
	OWNTYPE otype;
	ENUM type_tag typ;
} YYSTYPE;
#define	TCOMMENT	258
#define	TTEN	259
#define	TBEGIN	260
#define	TEND	261
#define	TGOTO	262
#define	TFOR	263
#define	TDO	264
#define	TWHILE	265
#define	TSTEP	266
#define	TUNTIL	267
#define	TIF	268
#define	TTHEN	269
#define	TELSE	270
#define	TSWITCH	271
#define	TPROC	272
#define	TVALUE	273
#define	TCODE	274
#define	TTRUE	275
#define	TFALSE	276
#define	TINTEGER	277
#define	TREAL	278
#define	TBOOL	279
#define	TLABEL	280
#define	TOWN	281
#define	TARRAY	282
#define	TSTRING	283
#define	TPOW	284
#define	TDIV	285
#define	TASSIGN	286
#define	TLESS	287
#define	TNOTGREATER	288
#define	TEQUAL	289
#define	TNOTLESS	290
#define	TGREATER	291
#define	TNOTEQUAL	292
#define	TAND	293
#define	TOR	294
#define	TNOT	295
#define	TIMPL	296
#define	TEQUIV	297
#define	INUM	298
#define	RNUM	299
#define	NAME	300
#define	STRING	301
#define	UNARY	302


extern YYSTYPE yylval;