util_expr_parse.h revision b4210838c9919c418f7b7d179b1b0ae4f91347bc
03831d35f7499c87d51205817c93e9a8d42c4baestevel/* A Bison parser, made by GNU Bison 2.7.12-4996. */
03831d35f7499c87d51205817c93e9a8d42c4baestevel
03831d35f7499c87d51205817c93e9a8d42c4baestevel/* Bison interface for Yacc-like parsers in C
03831d35f7499c87d51205817c93e9a8d42c4baestevel
03831d35f7499c87d51205817c93e9a8d42c4baestevel Copyright (C) 1984, 1989-1990, 2000-2013 Free Software Foundation, Inc.
03831d35f7499c87d51205817c93e9a8d42c4baestevel
03831d35f7499c87d51205817c93e9a8d42c4baestevel This program is free software: you can redistribute it and/or modify
03831d35f7499c87d51205817c93e9a8d42c4baestevel it under the terms of the GNU General Public License as published by
03831d35f7499c87d51205817c93e9a8d42c4baestevel the Free Software Foundation, either version 3 of the License, or
03831d35f7499c87d51205817c93e9a8d42c4baestevel (at your option) any later version.
03831d35f7499c87d51205817c93e9a8d42c4baestevel
03831d35f7499c87d51205817c93e9a8d42c4baestevel This program is distributed in the hope that it will be useful,
03831d35f7499c87d51205817c93e9a8d42c4baestevel but WITHOUT ANY WARRANTY; without even the implied warranty of
03831d35f7499c87d51205817c93e9a8d42c4baestevel MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
03831d35f7499c87d51205817c93e9a8d42c4baestevel GNU General Public License for more details.
03831d35f7499c87d51205817c93e9a8d42c4baestevel
03831d35f7499c87d51205817c93e9a8d42c4baestevel You should have received a copy of the GNU General Public License
03831d35f7499c87d51205817c93e9a8d42c4baestevel along with this program. If not, see <http://www.gnu.org/licenses/>. */
03831d35f7499c87d51205817c93e9a8d42c4baestevel
03831d35f7499c87d51205817c93e9a8d42c4baestevel/* As a special exception, you may create a larger work that contains
03831d35f7499c87d51205817c93e9a8d42c4baestevel part or all of the Bison parser skeleton and distribute that work
03831d35f7499c87d51205817c93e9a8d42c4baestevel under terms of your choice, so long as that work isn't itself a
03831d35f7499c87d51205817c93e9a8d42c4baestevel parser generator using the skeleton or a modified version thereof
03831d35f7499c87d51205817c93e9a8d42c4baestevel as a parser skeleton. Alternatively, if you modify or redistribute
03831d35f7499c87d51205817c93e9a8d42c4baestevel the parser skeleton itself, you may (at your option) remove this
03831d35f7499c87d51205817c93e9a8d42c4baestevel special exception, which will cause the skeleton and the resulting
03831d35f7499c87d51205817c93e9a8d42c4baestevel Bison output files to be licensed under the GNU General Public
03831d35f7499c87d51205817c93e9a8d42c4baestevel License without this special exception.
03831d35f7499c87d51205817c93e9a8d42c4baestevel
03831d35f7499c87d51205817c93e9a8d42c4baestevel This special exception was added by the Free Software Foundation in
03831d35f7499c87d51205817c93e9a8d42c4baestevel version 2.2 of Bison. */
03831d35f7499c87d51205817c93e9a8d42c4baestevel
#ifndef YY_AP_EXPR_YY_UTIL_EXPR_PARSE_H_INCLUDED
# define YY_AP_EXPR_YY_UTIL_EXPR_PARSE_H_INCLUDED
/* Enabling traces. */
#ifndef YYDEBUG
# define YYDEBUG 0
#endif
#if YYDEBUG
extern int ap_expr_yydebug;
#endif
/* Tokens. */
#ifndef YYTOKENTYPE
# define YYTOKENTYPE
/* Put the tokens into the symbol table, so that GDB and other debuggers
know about them. */
enum yytokentype {
T_TRUE = 258,
T_FALSE = 259,
T_EXPR_BOOL = 260,
T_EXPR_STRING = 261,
T_ERROR = 262,
T_DIGIT = 263,
T_ID = 264,
T_STRING = 265,
T_REGEX = 266,
T_REGEX_I = 267,
T_REGEX_BACKREF = 268,
T_OP_UNARY = 269,
T_OP_BINARY = 270,
T_STR_BEGIN = 271,
T_STR_END = 272,
T_VAR_BEGIN = 273,
T_VAR_END = 274,
T_OP_EQ = 275,
T_OP_NE = 276,
T_OP_LT = 277,
T_OP_LE = 278,
T_OP_GT = 279,
T_OP_GE = 280,
T_OP_REG = 281,
T_OP_NRE = 282,
T_OP_IN = 283,
T_OP_STR_EQ = 284,
T_OP_STR_NE = 285,
T_OP_STR_LT = 286,
T_OP_STR_LE = 287,
T_OP_STR_GT = 288,
T_OP_STR_GE = 289,
T_OP_CONCAT = 290,
T_OP_OR = 291,
T_OP_AND = 292,
T_OP_NOT = 293
};
#endif
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
typedef union YYSTYPE
{
/* Line 2053 of yacc.c */
#line 35 "util_expr_parse.y"
char *cpVal;
ap_expr_t *exVal;
int num;
/* Line 2053 of yacc.c */
#line 102 "util_expr_parse.h"
} YYSTYPE;
# define YYSTYPE_IS_TRIVIAL 1
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
# define YYSTYPE_IS_DECLARED 1
#endif
#ifdef YYPARSE_PARAM
#if defined __STDC__ || defined __cplusplus
int ap_expr_yyparse (void *YYPARSE_PARAM);
#else
int ap_expr_yyparse ();
#endif
#else /* ! YYPARSE_PARAM */
#if defined __STDC__ || defined __cplusplus
int ap_expr_yyparse (ap_expr_parse_ctx_t *ctx);
#else
int ap_expr_yyparse ();
#endif
#endif /* ! YYPARSE_PARAM */
#endif /* !YY_AP_EXPR_YY_UTIL_EXPR_PARSE_H_INCLUDED */