GnuCOBOL
2.0
A free COBOL compiler
Main Page
Data Structures
Files
File List
Globals
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
ppparse.h
Go to the documentation of this file.
1
/* A Bison parser, made by GNU Bison 2.5. */
2
3
/* Bison interface for Yacc-like parsers in C
4
5
Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc.
6
7
This program is free software: you can redistribute it and/or modify
8
it under the terms of the GNU General Public License as published by
9
the Free Software Foundation, either version 3 of the License, or
10
(at your option) any later version.
11
12
This program is distributed in the hope that it will be useful,
13
but WITHOUT ANY WARRANTY; without even the implied warranty of
14
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
GNU General Public License for more details.
16
17
You should have received a copy of the GNU General Public License
18
along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20
/* As a special exception, you may create a larger work that contains
21
part or all of the Bison parser skeleton and distribute that work
22
under terms of your choice, so long as that work isn't itself a
23
parser generator using the skeleton or a modified version thereof
24
as a parser skeleton. Alternatively, if you modify or redistribute
25
the parser skeleton itself, you may (at your option) remove this
26
special exception, which will cause the skeleton and the resulting
27
Bison output files to be licensed under the GNU General Public
28
License without this special exception.
29
30
This special exception was added by the Free Software Foundation in
31
version 2.2 of Bison. */
32
33
34
/* Tokens. */
35
#ifndef YYTOKENTYPE
36
# define YYTOKENTYPE
37
/* Put the tokens into the symbol table, so that GDB and other debuggers
38
know about them. */
39
enum
yytokentype
{
40
TOKEN_EOF
= 0,
41
ALSO
= 258,
42
BY
= 259,
43
COPY
= 260,
44
EQEQ
= 261,
45
IN
= 262,
46
LAST
= 263,
47
LEADING
= 264,
48
OF
= 265,
49
OFF
= 266,
50
PRINTING
= 267,
51
REPLACE
= 268,
52
REPLACING
= 269,
53
SUPPRESS
= 270,
54
TRAILING
= 271,
55
DOT
= 272,
56
GARBAGE
= 273,
57
SOURCE_DIRECTIVE
= 274,
58
FORMAT
= 275,
59
IS
= 276,
60
FIXED
= 277,
61
FREE
= 278,
62
DEFINE_DIRECTIVE
= 279,
63
AS
= 280,
64
PARAMETER
= 281,
65
OVERRIDE
= 282,
66
SET_DIRECTIVE
= 283,
67
CONSTANT
= 284,
68
SOURCEFORMAT
= 285,
69
FOLDCOPYNAME
= 286,
70
NOFOLDCOPYNAME
= 287,
71
IF_DIRECTIVE
= 288,
72
ELSE_DIRECTIVE
= 289,
73
ENDIF_DIRECTIVE
= 290,
74
ELIF_DIRECTIVE
= 291,
75
GE
= 292,
76
LE
= 293,
77
LT
= 294,
78
GT
= 295,
79
EQ
= 296,
80
NE
= 297,
81
NOT
= 298,
82
THAN
= 299,
83
TO
= 300,
84
OR
= 301,
85
EQUAL
= 302,
86
GREATER
= 303,
87
LESS
= 304,
88
SET
= 305,
89
DEFINED
= 306,
90
TURN_DIRECTIVE
= 307,
91
ON
= 308,
92
CHECKING
= 309,
93
WITH
= 310,
94
LOCATION
= 311,
95
TERMINATOR
= 312,
96
TOKEN
= 313,
97
VARIABLE
= 314,
98
LITERAL
= 315
99
};
100
#endif
101
102
103
104
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
105
typedef
union
YYSTYPE
106
{
107
108
/* Line 2066 of yacc.c */
109
#line 501 "ppparse.y"
110
111
char
*
s
;
112
struct
cb_text_list
*
l
;
113
struct
cb_replace_list
*
r
;
114
struct
cb_define_struct
*
ds
;
115
unsigned
int
ui
;
116
int
si
;
117
118
119
120
/* Line 2066 of yacc.c */
121
#line 122 "ppparse.h"
122
}
YYSTYPE
;
123
# define YYSTYPE_IS_TRIVIAL 1
124
# define yystype YYSTYPE
/* obsolescent; will be withdrawn */
125
# define YYSTYPE_IS_DECLARED 1
126
#endif
127
128
extern
YYSTYPE
pplval
;
129
130
cobc
ppparse.h
Generated by
1.8.3.1