File: eval.h

package info (click to toggle)
ht 0.5.0-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 3,388 kB
  • ctags: 9,064
  • sloc: cpp: 51,336; ansic: 11,954; sh: 2,742; yacc: 1,142; lex: 396; makefile: 178
file content (29 lines) | stat: -rw-r--r-- 579 bytes parent folder | download
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
typedef union {
	scalar_t scalar;
	char *ident;
	scalarlist_t scalars;
} YYSTYPE;
#define	EVAL_INT	257
#define	EVAL_STR	258
#define	EVAL_FLOAT	259
#define	EVAL_IDENT	260
#define	EVAL_LAND	261
#define	EVAL_LXOR	262
#define	EVAL_LOR	263
#define	EVAL_EQ	264
#define	EVAL_NE	265
#define	EVAL_STR_EQ	266
#define	EVAL_STR_NE	267
#define	EVAL_LT	268
#define	EVAL_LE	269
#define	EVAL_GT	270
#define	EVAL_GE	271
#define	EVAL_STR_LT	272
#define	EVAL_STR_LE	273
#define	EVAL_STR_GT	274
#define	EVAL_STR_GE	275
#define	EVAL_SHL	276
#define	EVAL_SHR	277
#define	NEG	278
#define	EVAL_POW	279