00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037 #ifndef YYTOKENTYPE
00038 # define YYTOKENTYPE
00039
00040
00041 enum yytokentype {
00042 RSL_STRING = 258,
00043 RSL_OP_AND = 259,
00044 RSL_OP_OR = 260,
00045 RSL_OP_MULTIREQ = 261,
00046 RSL_OP_EQ = 262,
00047 RSL_OP_NEQ = 263,
00048 RSL_OP_LT = 264,
00049 RSL_OP_LTEQ = 265,
00050 RSL_OP_GT = 266,
00051 RSL_OP_GTEQ = 267,
00052 RSL_OP_CONCATENATE = 268,
00053 RSL_LPAREN = 269,
00054 RSL_RPAREN = 270,
00055 RSL_VARIABLE_START = 271
00056 };
00057 #endif
00058
00059 #define RSL_STRING 258
00060 #define RSL_OP_AND 259
00061 #define RSL_OP_OR 260
00062 #define RSL_OP_MULTIREQ 261
00063 #define RSL_OP_EQ 262
00064 #define RSL_OP_NEQ 263
00065 #define RSL_OP_LT 264
00066 #define RSL_OP_LTEQ 265
00067 #define RSL_OP_GT 266
00068 #define RSL_OP_GTEQ 267
00069 #define RSL_OP_CONCATENATE 268
00070 #define RSL_LPAREN 269
00071 #define RSL_RPAREN 270
00072 #define RSL_VARIABLE_START 271
00073
00074
00075
00076
00077 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
00078 typedef union YYSTYPE
00079 #line 61 "../../../../../gram/rsl/source/globus_rsl_parser.y"
00080 {
00081 int Int;
00082 char * String;
00083
00084 globus_rsl_t * RSL;
00085 globus_rsl_value_t * RSLval;
00086 globus_list_t * List;
00087 }
00088
00089 #line 90 "globus_rsl_parser.h"
00090 YYSTYPE;
00091 # define yystype YYSTYPE
00092 # define YYSTYPE_IS_DECLARED 1
00093 # define YYSTYPE_IS_TRIVIAL 1
00094 #endif
00095
00096
00097
00098 #if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLARED
00099 typedef struct YYLTYPE
00100 {
00101 int first_line;
00102 int first_column;
00103 int last_line;
00104 int last_column;
00105 } YYLTYPE;
00106 # define yyltype YYLTYPE
00107 # define YYLTYPE_IS_DECLARED 1
00108 # define YYLTYPE_IS_TRIVIAL 1
00109 #endif
00110
00111