cmDependsFortranParserTokens.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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. USE = 258,
  27. F_INCLUDE = 259,
  28. MODULE = 260,
  29. EOSTMT = 261,
  30. CPP_INCLUDE = 262,
  31. F90PPR_INCLUDE = 263,
  32. COCO_INCLUDE = 264,
  33. F90PPR_DEFINE = 265,
  34. CPP_DEFINE = 266,
  35. F90PPR_UNDEF = 267,
  36. CPP_UNDEF = 268,
  37. CPP_IFDEF = 269,
  38. CPP_IFNDEF = 270,
  39. CPP_IF = 271,
  40. CPP_ELSE = 272,
  41. CPP_ELIF = 273,
  42. CPP_ENDIF = 274,
  43. F90PPR_IFDEF = 275,
  44. F90PPR_IFNDEF = 276,
  45. F90PPR_IF = 277,
  46. F90PPR_ELSE = 278,
  47. F90PPR_ELIF = 279,
  48. F90PPR_ENDIF = 280,
  49. UNTERMINATED_STRING = 281,
  50. CPP_TOENDL = 282,
  51. STRING = 283,
  52. WORD = 284
  53. };
  54. #endif
  55. #define USE 258
  56. #define F_INCLUDE 259
  57. #define MODULE 260
  58. #define EOSTMT 261
  59. #define CPP_INCLUDE 262
  60. #define F90PPR_INCLUDE 263
  61. #define COCO_INCLUDE 264
  62. #define F90PPR_DEFINE 265
  63. #define CPP_DEFINE 266
  64. #define F90PPR_UNDEF 267
  65. #define CPP_UNDEF 268
  66. #define CPP_IFDEF 269
  67. #define CPP_IFNDEF 270
  68. #define CPP_IF 271
  69. #define CPP_ELSE 272
  70. #define CPP_ELIF 273
  71. #define CPP_ENDIF 274
  72. #define F90PPR_IFDEF 275
  73. #define F90PPR_IFNDEF 276
  74. #define F90PPR_IF 277
  75. #define F90PPR_ELSE 278
  76. #define F90PPR_ELIF 279
  77. #define F90PPR_ENDIF 280
  78. #define UNTERMINATED_STRING 281
  79. #define CPP_TOENDL 282
  80. #define STRING 283
  81. #define WORD 284
  82. #if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
  83. #line 75 "cmDependsFortranParser.y"
  84. typedef union YYSTYPE {
  85. char* string;
  86. } YYSTYPE;
  87. /* Line 1285 of yacc.c. */
  88. #line 99 "cmDependsFortranParserTokens.h"
  89. # define yystype YYSTYPE /* obsolescent; will be withdrawn */
  90. # define YYSTYPE_IS_DECLARED 1
  91. # define YYSTYPE_IS_TRIVIAL 1
  92. #endif