2019-12-01 18:45:00 +00:00
|
|
|
/* A Bison parser, made by GNU Bison 3.4.1. */
|
2018-03-24 12:12:50 +00:00
|
|
|
|
|
|
|
/* Bison interface for Yacc-like parsers in C
|
|
|
|
|
2019-12-01 18:45:00 +00:00
|
|
|
Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2019 Free Software Foundation,
|
|
|
|
Inc.
|
2018-03-24 12:12:50 +00:00
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
|
|
|
|
/* As a special exception, you may create a larger work that contains
|
|
|
|
part or all of the Bison parser skeleton and distribute that work
|
|
|
|
under terms of your choice, so long as that work isn't itself a
|
|
|
|
parser generator using the skeleton or a modified version thereof
|
|
|
|
as a parser skeleton. Alternatively, if you modify or redistribute
|
|
|
|
the parser skeleton itself, you may (at your option) remove this
|
|
|
|
special exception, which will cause the skeleton and the resulting
|
|
|
|
Bison output files to be licensed under the GNU General Public
|
|
|
|
License without this special exception.
|
|
|
|
|
|
|
|
This special exception was added by the Free Software Foundation in
|
|
|
|
version 2.2 of Bison. */
|
|
|
|
|
2019-12-01 18:45:00 +00:00
|
|
|
/* Undocumented macros, especially those whose name start with YY_,
|
|
|
|
are private implementation details. Do not rely on them. */
|
|
|
|
|
2018-03-24 12:12:50 +00:00
|
|
|
#ifndef YY_WQL_E_REACTOSSYNC_GCC_DLL_WIN32_WBEMPROX_WQL_TAB_H_INCLUDED
|
|
|
|
# define YY_WQL_E_REACTOSSYNC_GCC_DLL_WIN32_WBEMPROX_WQL_TAB_H_INCLUDED
|
|
|
|
/* Debug traces. */
|
|
|
|
#ifndef YYDEBUG
|
|
|
|
# define YYDEBUG 0
|
|
|
|
#endif
|
|
|
|
#if YYDEBUG
|
|
|
|
extern int wql_debug;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Token type. */
|
|
|
|
#ifndef YYTOKENTYPE
|
|
|
|
# define YYTOKENTYPE
|
|
|
|
enum yytokentype
|
|
|
|
{
|
|
|
|
TK_SELECT = 258,
|
|
|
|
TK_FROM = 259,
|
|
|
|
TK_STAR = 260,
|
|
|
|
TK_COMMA = 261,
|
|
|
|
TK_DOT = 262,
|
|
|
|
TK_IS = 263,
|
|
|
|
TK_LP = 264,
|
|
|
|
TK_RP = 265,
|
|
|
|
TK_NULL = 266,
|
|
|
|
TK_FALSE = 267,
|
|
|
|
TK_TRUE = 268,
|
|
|
|
TK_INTEGER = 269,
|
|
|
|
TK_WHERE = 270,
|
|
|
|
TK_SPACE = 271,
|
|
|
|
TK_MINUS = 272,
|
|
|
|
TK_ILLEGAL = 273,
|
|
|
|
TK_BY = 274,
|
2019-12-01 18:45:00 +00:00
|
|
|
TK_ASSOCIATORS = 275,
|
|
|
|
TK_OF = 276,
|
|
|
|
TK_STRING = 277,
|
|
|
|
TK_ID = 278,
|
|
|
|
TK_PATH = 279,
|
|
|
|
TK_OR = 280,
|
|
|
|
TK_AND = 281,
|
|
|
|
TK_NOT = 282,
|
|
|
|
TK_EQ = 283,
|
|
|
|
TK_NE = 284,
|
|
|
|
TK_LT = 285,
|
|
|
|
TK_GT = 286,
|
|
|
|
TK_LE = 287,
|
|
|
|
TK_GE = 288,
|
|
|
|
TK_LIKE = 289
|
2018-03-24 12:12:50 +00:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Value type. */
|
|
|
|
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
|
|
|
|
union YYSTYPE
|
|
|
|
{
|
2019-12-01 18:45:00 +00:00
|
|
|
#line 222 "wql.y"
|
2018-03-24 12:12:50 +00:00
|
|
|
|
|
|
|
struct string str;
|
|
|
|
WCHAR *string;
|
|
|
|
struct property *proplist;
|
2019-12-01 18:45:00 +00:00
|
|
|
struct keyword *keywordlist;
|
2018-03-24 12:12:50 +00:00
|
|
|
struct view *view;
|
|
|
|
struct expr *expr;
|
|
|
|
int integer;
|
|
|
|
|
2019-12-01 18:45:00 +00:00
|
|
|
#line 102 "wql.tab.h"
|
|
|
|
|
2018-03-24 12:12:50 +00:00
|
|
|
};
|
2019-12-01 18:45:00 +00:00
|
|
|
typedef union YYSTYPE YYSTYPE;
|
2018-03-24 12:12:50 +00:00
|
|
|
# define YYSTYPE_IS_TRIVIAL 1
|
|
|
|
# define YYSTYPE_IS_DECLARED 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int wql_parse (struct parser *ctx);
|
|
|
|
|
|
|
|
#endif /* !YY_WQL_E_REACTOSSYNC_GCC_DLL_WIN32_WBEMPROX_WQL_TAB_H_INCLUDED */
|