summaryrefslogtreecommitdiff
path: root/y.tab.h
blob: 03e9ce0f54fc5d2ecc008cfd8893de9bbbda3c6c (plain)
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
typedef union {
  WORD_DESC *word;		/* the word that we read. */
  int number;			/* the number that we read. */
  WORD_LIST *word_list;
  COMMAND *command;
  REDIRECT *redirect;
  ELEMENT element;
  PATTERN_LIST *pattern;
} YYSTYPE;
#define	IF	258
#define	THEN	259
#define	ELSE	260
#define	ELIF	261
#define	FI	262
#define	CASE	263
#define	ESAC	264
#define	FOR	265
#define	SELECT	266
#define	WHILE	267
#define	UNTIL	268
#define	DO	269
#define	DONE	270
#define	FUNCTION	271
#define	COND_START	272
#define	COND_END	273
#define	COND_ERROR	274
#define	IN	275
#define	BANG	276
#define	TIME	277
#define	TIMEOPT	278
#define	WORD	279
#define	ASSIGNMENT_WORD	280
#define	NUMBER	281
#define	ARITH_CMD	282
#define	ARITH_FOR_EXPRS	283
#define	COND_CMD	284
#define	AND_AND	285
#define	OR_OR	286
#define	GREATER_GREATER	287
#define	LESS_LESS	288
#define	LESS_AND	289
#define	GREATER_AND	290
#define	SEMI_SEMI	291
#define	LESS_LESS_MINUS	292
#define	AND_GREATER	293
#define	LESS_GREATER	294
#define	GREATER_BAR	295
#define	yacc_EOF	296


extern YYSTYPE yylval;