cmExprParserTokens.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /* A Bison parser, made by GNU Bison 1.875d. */
  2. /* Skeleton parser for Yacc-like parsing with Bison, Copyright (C) 1984,
  3. 1989, 1990, 2000, 2001, 2002, 2003, 2004 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 2, or (at your option)
  7. 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, write to the Free Software
  14. Foundation, Inc., 59 Temple Place - Suite 330,
  15. Boston, MA 02111-1307, USA. */
  16. /* As a special exception, when this file is copied by Bison into a
  17. Bison output file, you may use that output file without restriction.
  18. This special exception was added by the Free Software Foundation
  19. in version 1.24 of Bison. */
  20. /* Tokens. */
  21. #ifndef YYTOKENTYPE
  22. # define YYTOKENTYPE
  23. /* Put the tokens into the symbol table, so that GDB and other debuggers
  24. know about them. */
  25. enum yytokentype {
  26. exp_PLUS = 258,
  27. exp_MINUS = 259,
  28. exp_TIMES = 260,
  29. exp_DIVIDE = 261,
  30. exp_MOD = 262,
  31. exp_SHIFTLEFT = 263,
  32. exp_SHIFTRIGHT = 264,
  33. exp_OPENPARENT = 265,
  34. exp_CLOSEPARENT = 266,
  35. exp_OR = 267,
  36. exp_AND = 268,
  37. exp_XOR = 269,
  38. exp_NOT = 270,
  39. exp_NUMBER = 271
  40. };
  41. #endif
  42. #define exp_PLUS 258
  43. #define exp_MINUS 259
  44. #define exp_TIMES 260
  45. #define exp_DIVIDE 261
  46. #define exp_MOD 262
  47. #define exp_SHIFTLEFT 263
  48. #define exp_SHIFTRIGHT 264
  49. #define exp_OPENPARENT 265
  50. #define exp_CLOSEPARENT 266
  51. #define exp_OR 267
  52. #define exp_AND 268
  53. #define exp_XOR 269
  54. #define exp_NOT 270
  55. #define exp_NUMBER 271
  56. #if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
  57. typedef int YYSTYPE;
  58. # define yystype YYSTYPE /* obsolescent; will be withdrawn */
  59. # define YYSTYPE_IS_DECLARED 1
  60. # define YYSTYPE_IS_TRIVIAL 1
  61. #endif