cmCommandArgumentParserTokens.h 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /*=========================================================================
  2. Program: CMake - Cross-Platform Makefile Generator
  3. Module: $RCSfile$
  4. Language: C++
  5. Date: $Date$
  6. Version: $Revision$
  7. Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
  8. See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
  9. This software is distributed WITHOUT ANY WARRANTY; without even
  10. the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  11. PURPOSE. See the above copyright notices for more information.
  12. =========================================================================*/
  13. /* A Bison parser, made by GNU Bison 2.3. */
  14. /* Skeleton interface for Bison's Yacc-like parsers in C
  15. Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
  16. Free Software Foundation, Inc.
  17. This program is free software; you can redistribute it and/or modify
  18. it under the terms of the GNU General Public License as published by
  19. the Free Software Foundation; either version 2, or (at your option)
  20. any later version.
  21. This program is distributed in the hope that it will be useful,
  22. but WITHOUT ANY WARRANTY; without even the implied warranty of
  23. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  24. GNU General Public License for more details.
  25. You should have received a copy of the GNU General Public License
  26. along with this program; if not, write to the Free Software
  27. Foundation, Inc., 51 Franklin Street, Fifth Floor,
  28. Boston, MA 02110-1301, USA. */
  29. /* As a special exception, you may create a larger work that contains
  30. part or all of the Bison parser skeleton and distribute that work
  31. under terms of your choice, so long as that work isn't itself a
  32. parser generator using the skeleton or a modified version thereof
  33. as a parser skeleton. Alternatively, if you modify or redistribute
  34. the parser skeleton itself, you may (at your option) remove this
  35. special exception, which will cause the skeleton and the resulting
  36. Bison output files to be licensed under the GNU General Public
  37. License without this special exception.
  38. This special exception was added by the Free Software Foundation in
  39. version 2.2 of Bison. */
  40. /* Tokens. */
  41. #ifndef YYTOKENTYPE
  42. # define YYTOKENTYPE
  43. /* Put the tokens into the symbol table, so that GDB and other debuggers
  44. know about them. */
  45. enum yytokentype {
  46. cal_ENVCURLY = 258,
  47. cal_NCURLY = 259,
  48. cal_DCURLY = 260,
  49. cal_DOLLAR = 261,
  50. cal_LCURLY = 262,
  51. cal_RCURLY = 263,
  52. cal_NAME = 264,
  53. cal_BSLASH = 265,
  54. cal_SYMBOL = 266,
  55. cal_AT = 267,
  56. cal_ERROR = 268,
  57. cal_ATNAME = 269
  58. };
  59. #endif
  60. /* Tokens. */
  61. #define cal_ENVCURLY 258
  62. #define cal_NCURLY 259
  63. #define cal_DCURLY 260
  64. #define cal_DOLLAR 261
  65. #define cal_LCURLY 262
  66. #define cal_RCURLY 263
  67. #define cal_NAME 264
  68. #define cal_BSLASH 265
  69. #define cal_SYMBOL 266
  70. #define cal_AT 267
  71. #define cal_ERROR 268
  72. #define cal_ATNAME 269
  73. #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
  74. typedef int YYSTYPE;
  75. # define yystype YYSTYPE /* obsolescent; will be withdrawn */
  76. # define YYSTYPE_IS_DECLARED 1
  77. # define YYSTYPE_IS_TRIVIAL 1
  78. #endif