globus_rsl
11.3
Loading...
Searching...
No Matches
globus_rsl_parser.h
1
/* A Bison parser, made by GNU Bison 2.3. */
2
3
/* Skeleton interface for Bison's Yacc-like parsers in C
4
5
Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
6
Free Software Foundation, Inc.
7
8
This program is free software; you can redistribute it and/or modify
9
it under the terms of the GNU General Public License as published by
10
the Free Software Foundation; either version 2, or (at your option)
11
any later version.
12
13
This program is distributed in the hope that it will be useful,
14
but WITHOUT ANY WARRANTY; without even the implied warranty of
15
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
GNU General Public License for more details.
17
18
You should have received a copy of the GNU General Public License
19
along with this program; if not, write to the Free Software
20
Foundation, Inc., 51 Franklin Street, Fifth Floor,
21
Boston, MA 02110-1301, USA. */
22
23
/* As a special exception, you may create a larger work that contains
24
part or all of the Bison parser skeleton and distribute that work
25
under terms of your choice, so long as that work isn't itself a
26
parser generator using the skeleton or a modified version thereof
27
as a parser skeleton. Alternatively, if you modify or redistribute
28
the parser skeleton itself, you may (at your option) remove this
29
special exception, which will cause the skeleton and the resulting
30
Bison output files to be licensed under the GNU General Public
31
License without this special exception.
32
33
This special exception was added by the Free Software Foundation in
34
version 2.2 of Bison. */
35
36
/* Tokens. */
37
#ifndef YYTOKENTYPE
38
# define YYTOKENTYPE
39
/* Put the tokens into the symbol table, so that GDB and other debuggers
40
know about them. */
41
enum
yytokentype {
42
RSL_STRING = 258,
43
RSL_OP_AND = 259,
44
RSL_OP_OR = 260,
45
RSL_OP_MULTIREQ = 261,
46
RSL_OP_EQ = 262,
47
RSL_OP_NEQ = 263,
48
RSL_OP_LT = 264,
49
RSL_OP_LTEQ = 265,
50
RSL_OP_GT = 266,
51
RSL_OP_GTEQ = 267,
52
RSL_OP_CONCATENATE = 268,
53
RSL_LPAREN = 269,
54
RSL_RPAREN = 270,
55
RSL_VARIABLE_START = 271
56
};
57
#endif
58
/* Tokens. */
59
#define RSL_STRING 258
60
#define RSL_OP_AND 259
61
#define RSL_OP_OR 260
62
#define RSL_OP_MULTIREQ 261
63
#define RSL_OP_EQ 262
64
#define RSL_OP_NEQ 263
65
#define RSL_OP_LT 264
66
#define RSL_OP_LTEQ 265
67
#define RSL_OP_GT 266
68
#define RSL_OP_GTEQ 267
69
#define RSL_OP_CONCATENATE 268
70
#define RSL_LPAREN 269
71
#define RSL_RPAREN 270
72
#define RSL_VARIABLE_START 271
73
74
75
76
77
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
78
typedef
union
YYSTYPE
79
#line 61
"../../../../../gram/rsl/source/globus_rsl_parser.y"
80
{
81
int
Int;
82
char
* String;
83
84
globus_rsl_t * RSL;
85
globus_rsl_value_t * RSLval;
86
globus_list_t * List;
87
}
88
/* Line 1529 of yacc.c. */
89
#line 90 "globus_rsl_parser.h"
90
YYSTYPE;
91
# define yystype YYSTYPE
/* obsolescent; will be withdrawn */
92
# define YYSTYPE_IS_DECLARED 1
93
# define YYSTYPE_IS_TRIVIAL 1
94
#endif
95
96
97
98
#if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLARED
99
typedef
struct
YYLTYPE
100
{
101
int
first_line;
102
int
first_column;
103
int
last_line;
104
int
last_column;
105
} YYLTYPE;
106
# define yyltype YYLTYPE
/* obsolescent; will be withdrawn */
107
# define YYLTYPE_IS_DECLARED 1
108
# define YYLTYPE_IS_TRIVIAL 1
109
#endif
110
111
Generated by
1.9.6