cmDependsFortranParserTokens.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. /* A Bison parser, made by GNU Bison 2.3. */
  2. /* Skeleton interface for Bison's Yacc-like parsers in C
  3. Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
  4. Free Software Foundation, Inc.
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 2, or (at your option)
  8. any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program; if not, write to the Free Software
  15. Foundation, Inc., 51 Franklin Street, Fifth Floor,
  16. Boston, MA 02110-1301, USA. */
  17. /* As a special exception, you may create a larger work that contains
  18. part or all of the Bison parser skeleton and distribute that work
  19. under terms of your choice, so long as that work isn't itself a
  20. parser generator using the skeleton or a modified version thereof
  21. as a parser skeleton. Alternatively, if you modify or redistribute
  22. the parser skeleton itself, you may (at your option) remove this
  23. special exception, which will cause the skeleton and the resulting
  24. Bison output files to be licensed under the GNU General Public
  25. License without this special exception.
  26. This special exception was added by the Free Software Foundation in
  27. version 2.2 of Bison. */
  28. /* Tokens. */
  29. #ifndef YYTOKENTYPE
  30. # define YYTOKENTYPE
  31. /* Put the tokens into the symbol table, so that GDB and other debuggers
  32. know about them. */
  33. enum yytokentype {
  34. EOSTMT = 258,
  35. ASSIGNMENT_OP = 259,
  36. GARBAGE = 260,
  37. CPP_INCLUDE = 261,
  38. F90PPR_INCLUDE = 262,
  39. COCO_INCLUDE = 263,
  40. F90PPR_DEFINE = 264,
  41. CPP_DEFINE = 265,
  42. F90PPR_UNDEF = 266,
  43. CPP_UNDEF = 267,
  44. CPP_IFDEF = 268,
  45. CPP_IFNDEF = 269,
  46. CPP_IF = 270,
  47. CPP_ELSE = 271,
  48. CPP_ELIF = 272,
  49. CPP_ENDIF = 273,
  50. F90PPR_IFDEF = 274,
  51. F90PPR_IFNDEF = 275,
  52. F90PPR_IF = 276,
  53. F90PPR_ELSE = 277,
  54. F90PPR_ELIF = 278,
  55. F90PPR_ENDIF = 279,
  56. COMMA = 280,
  57. DCOLON = 281,
  58. CPP_TOENDL = 282,
  59. UNTERMINATED_STRING = 283,
  60. STRING = 284,
  61. WORD = 285
  62. };
  63. #endif
  64. /* Tokens. */
  65. #define EOSTMT 258
  66. #define ASSIGNMENT_OP 259
  67. #define GARBAGE 260
  68. #define CPP_INCLUDE 261
  69. #define F90PPR_INCLUDE 262
  70. #define COCO_INCLUDE 263
  71. #define F90PPR_DEFINE 264
  72. #define CPP_DEFINE 265
  73. #define F90PPR_UNDEF 266
  74. #define CPP_UNDEF 267
  75. #define CPP_IFDEF 268
  76. #define CPP_IFNDEF 269
  77. #define CPP_IF 270
  78. #define CPP_ELSE 271
  79. #define CPP_ELIF 272
  80. #define CPP_ENDIF 273
  81. #define F90PPR_IFDEF 274
  82. #define F90PPR_IFNDEF 275
  83. #define F90PPR_IF 276
  84. #define F90PPR_ELSE 277
  85. #define F90PPR_ELIF 278
  86. #define F90PPR_ENDIF 279
  87. #define COMMA 280
  88. #define DCOLON 281
  89. #define CPP_TOENDL 282
  90. #define UNTERMINATED_STRING 283
  91. #define STRING 284
  92. #define WORD 285
  93. #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
  94. typedef union YYSTYPE
  95. #line 141 "cmDependsFortranParser.y"
  96. {
  97. char* string;
  98. }
  99. /* Line 1489 of yacc.c. */
  100. #line 113 "cmDependsFortranParserTokens.h"
  101. YYSTYPE;
  102. # define yystype YYSTYPE /* obsolescent; will be withdrawn */
  103. # define YYSTYPE_IS_DECLARED 1
  104. # define YYSTYPE_IS_TRIVIAL 1
  105. #endif