bison_BPredicate.h 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /* A Bison parser, made by GNU Bison 2.5. */
  2. /* Bison interface for Yacc-like parsers in C
  3. Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc.
  4. This program is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation, either version 3 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program. If not, see <http://www.gnu.org/licenses/>. */
  14. /* As a special exception, you may create a larger work that contains
  15. part or all of the Bison parser skeleton and distribute that work
  16. under terms of your choice, so long as that work isn't itself a
  17. parser generator using the skeleton or a modified version thereof
  18. as a parser skeleton. Alternatively, if you modify or redistribute
  19. the parser skeleton itself, you may (at your option) remove this
  20. special exception, which will cause the skeleton and the resulting
  21. Bison output files to be licensed under the GNU General Public
  22. License without this special exception.
  23. This special exception was added by the Free Software Foundation in
  24. version 2.2 of Bison. */
  25. /* Tokens. */
  26. #ifndef YYTOKENTYPE
  27. # define YYTOKENTYPE
  28. /* Put the tokens into the symbol table, so that GDB and other debuggers
  29. know about them. */
  30. enum yytokentype {
  31. STRING = 258,
  32. NAME = 259,
  33. PEER1_NAME = 260,
  34. PEER2_NAME = 261,
  35. AND = 262,
  36. OR = 263,
  37. NOT = 264,
  38. SPAR = 265,
  39. EPAR = 266,
  40. CONSTANT_TRUE = 267,
  41. CONSTANT_FALSE = 268,
  42. COMMA = 269
  43. };
  44. #endif
  45. #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
  46. typedef union YYSTYPE
  47. {
  48. /* Line 2068 of yacc.c */
  49. #line 227 "predicate/BPredicate.y"
  50. char *text;
  51. struct predicate_node *node;
  52. struct arguments_node *arg_node;
  53. struct predicate_node nfaw;
  54. struct arguments_arg arg_arg;
  55. /* Line 2068 of yacc.c */
  56. #line 74 "generated//bison_BPredicate.h"
  57. } YYSTYPE;
  58. # define YYSTYPE_IS_TRIVIAL 1
  59. # define yystype YYSTYPE /* obsolescent; will be withdrawn */
  60. # define YYSTYPE_IS_DECLARED 1
  61. #endif
  62. #if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLARED
  63. typedef struct YYLTYPE
  64. {
  65. int first_line;
  66. int first_column;
  67. int last_line;
  68. int last_column;
  69. } YYLTYPE;
  70. # define yyltype YYLTYPE /* obsolescent; will be withdrawn */
  71. # define YYLTYPE_IS_DECLARED 1
  72. # define YYLTYPE_IS_TRIVIAL 1
  73. #endif