Ruby
2.4.2p198(2017-09-14revision59899)
parse.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
END_OF_INPUT
= 0,
41
keyword_class
= 258,
42
keyword_module
= 259,
43
keyword_def
= 260,
44
keyword_undef
= 261,
45
keyword_begin
= 262,
46
keyword_rescue
= 263,
47
keyword_ensure
= 264,
48
keyword_end
= 265,
49
keyword_if
= 266,
50
keyword_unless
= 267,
51
keyword_then
= 268,
52
keyword_elsif
= 269,
53
keyword_else
= 270,
54
keyword_case
= 271,
55
keyword_when
= 272,
56
keyword_while
= 273,
57
keyword_until
= 274,
58
keyword_for
= 275,
59
keyword_break
= 276,
60
keyword_next
= 277,
61
keyword_redo
= 278,
62
keyword_retry
= 279,
63
keyword_in
= 280,
64
keyword_do
= 281,
65
keyword_do_cond
= 282,
66
keyword_do_block
= 283,
67
keyword_do_LAMBDA
= 284,
68
keyword_return
= 285,
69
keyword_yield
= 286,
70
keyword_super
= 287,
71
keyword_self
= 288,
72
keyword_nil
= 289,
73
keyword_true
= 290,
74
keyword_false
= 291,
75
keyword_and
= 292,
76
keyword_or
= 293,
77
keyword_not
= 294,
78
modifier_if
= 295,
79
modifier_unless
= 296,
80
modifier_while
= 297,
81
modifier_until
= 298,
82
modifier_rescue
= 299,
83
keyword_alias
= 300,
84
keyword_defined
= 301,
85
keyword_BEGIN
= 302,
86
keyword_END
= 303,
87
keyword__LINE__
= 304,
88
keyword__FILE__
= 305,
89
keyword__ENCODING__
= 306,
90
tIDENTIFIER
= 307,
91
tFID
= 308,
92
tGVAR
= 309,
93
tIVAR
= 310,
94
tCONSTANT
= 311,
95
tCVAR
= 312,
96
tLABEL
= 313,
97
tINTEGER
= 314,
98
tFLOAT
= 315,
99
tRATIONAL
= 316,
100
tIMAGINARY
= 317,
101
tSTRING_CONTENT
= 318,
102
tCHAR
= 319,
103
tNTH_REF
= 320,
104
tBACK_REF
= 321,
105
tREGEXP_END
= 322,
106
tUPLUS
= 130,
107
tUMINUS
= 131,
108
tPOW
= 132,
109
tCMP
= 134,
110
tEQ
= 139,
111
tEQQ
= 140,
112
tNEQ
= 141,
113
tGEQ
= 138,
114
tLEQ
= 137,
115
tANDOP
= 148,
116
tOROP
= 149,
117
tMATCH
= 142,
118
tNMATCH
= 143,
119
tDOT2
= 128,
120
tDOT3
= 129,
121
tAREF
= 144,
122
tASET
= 145,
123
tLSHFT
= 135,
124
tRSHFT
= 136,
125
tANDDOT
= 150,
126
tCOLON2
= 323,
127
tCOLON3
= 324,
128
tOP_ASGN
= 325,
129
tASSOC
= 326,
130
tLPAREN
= 327,
131
tLPAREN_ARG
= 328,
132
tRPAREN
= 329,
133
tLBRACK
= 330,
134
tLBRACE
= 331,
135
tLBRACE_ARG
= 332,
136
tSTAR
= 333,
137
tDSTAR
= 334,
138
tAMPER
= 335,
139
tLAMBDA
= 336,
140
tSYMBEG
= 337,
141
tSTRING_BEG
= 338,
142
tXSTRING_BEG
= 339,
143
tREGEXP_BEG
= 340,
144
tWORDS_BEG
= 341,
145
tQWORDS_BEG
= 342,
146
tSYMBOLS_BEG
= 343,
147
tQSYMBOLS_BEG
= 344,
148
tSTRING_DBEG
= 345,
149
tSTRING_DEND
= 346,
150
tSTRING_DVAR
= 347,
151
tSTRING_END
= 348,
152
tLAMBEG
= 349,
153
tLABEL_END
= 350,
154
tLOWEST
= 351,
155
tUMINUS_NUM
= 352,
156
tLAST_TOKEN
= 353
157
};
158
#endif
159
160
161
162
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
163
typedef
union
YYSTYPE
164
{
165
166
/* Line 2068 of yacc.c */
167
168
VALUE
val
;
169
NODE
*
node
;
170
ID
id
;
171
int
num
;
172
const
struct
vtable
*
vars
;
173
174
175
176
/* Line 2068 of yacc.c */
177
}
YYSTYPE
;
178
# define YYSTYPE_IS_TRIVIAL 1
179
# define yystype YYSTYPE
/* obsolescent; will be withdrawn */
180
# define YYSTYPE_IS_DECLARED 1
181
#endif
182
183
184
185
keyword_case
Definition:
parse.h:54
keyword_in
Definition:
parse.h:63
YYSTYPE::val
VALUE val
Definition:
parse.h:168
keyword__LINE__
Definition:
parse.h:87
keyword_and
Definition:
parse.h:75
keyword_until
Definition:
parse.h:57
tXSTRING_BEG
Definition:
parse.h:142
tCONSTANT
Definition:
parse.h:94
tLPAREN_ARG
Definition:
parse.h:131
YYSTYPE
union YYSTYPE YYSTYPE
YYSTYPE::num
int num
Definition:
parse.h:171
tIVAR
Definition:
parse.h:93
tREGEXP_BEG
Definition:
parse.h:143
keyword_break
Definition:
parse.h:59
tAMPER
Definition:
parse.h:138
tWORDS_BEG
Definition:
parse.h:144
tLAST_TOKEN
Definition:
parse.h:156
keyword_for
Definition:
parse.h:58
keyword_while
Definition:
parse.h:56
tLBRACK
Definition:
parse.h:133
tEQQ
Definition:
parse.h:111
keyword_rescue
Definition:
parse.h:46
tAREF
Definition:
parse.h:121
tGVAR
Definition:
parse.h:92
tIDENTIFIER
Definition:
parse.h:90
tCOLON3
Definition:
parse.h:127
YYSTYPE::node
NODE * node
Definition:
parse.h:169
YYSTYPE::id
ID id
Definition:
parse.h:170
tFID
Definition:
parse.h:91
tSTRING_DEND
Definition:
parse.h:149
keyword_else
Definition:
parse.h:53
tBACK_REF
Definition:
parse.h:104
tGEQ
Definition:
parse.h:113
keyword_class
Definition:
parse.h:41
keyword_if
Definition:
parse.h:49
keyword_END
Definition:
parse.h:86
keyword_module
Definition:
parse.h:42
tSTRING_BEG
Definition:
parse.h:141
tEQ
Definition:
parse.h:110
keyword_do_LAMBDA
Definition:
parse.h:67
keyword_return
Definition:
parse.h:68
tOROP
Definition:
parse.h:116
RNode
Definition:
node.h:235
YYSTYPE
Definition:
parse.h:163
tLAMBDA
Definition:
parse.h:139
keyword_alias
Definition:
parse.h:83
keyword_do_cond
Definition:
parse.h:65
tLEQ
Definition:
parse.h:114
keyword_elsif
Definition:
parse.h:52
keyword_undef
Definition:
parse.h:44
tNTH_REF
Definition:
parse.h:103
keyword_false
Definition:
parse.h:74
keyword_unless
Definition:
parse.h:50
tUMINUS_NUM
Definition:
parse.h:155
keyword_begin
Definition:
parse.h:45
keyword_or
Definition:
parse.h:76
tUPLUS
Definition:
parse.h:106
tANDDOT
Definition:
parse.h:125
tRATIONAL
Definition:
parse.h:99
tDOT2
Definition:
parse.h:119
END_OF_INPUT
Definition:
parse.h:40
tIMAGINARY
Definition:
parse.h:100
keyword_BEGIN
Definition:
parse.h:85
keyword_retry
Definition:
parse.h:62
keyword_do
Definition:
parse.h:64
tMATCH
Definition:
parse.h:117
modifier_while
Definition:
parse.h:80
tLSHFT
Definition:
parse.h:123
tSYMBEG
Definition:
parse.h:140
tLAMBEG
Definition:
parse.h:152
tSTRING_END
Definition:
parse.h:151
tLPAREN
Definition:
parse.h:130
tQWORDS_BEG
Definition:
parse.h:145
ID
unsigned long ID
Definition:
ruby.h:86
tASET
Definition:
parse.h:122
tSTRING_DBEG
Definition:
parse.h:148
keyword_ensure
Definition:
parse.h:47
modifier_unless
Definition:
parse.h:79
VALUE
unsigned long VALUE
Definition:
ruby.h:85
tNMATCH
Definition:
parse.h:118
tCOLON2
Definition:
parse.h:126
yytokentype
yytokentype
Definition:
parse.c:909
tLBRACE_ARG
Definition:
parse.h:135
keyword_next
Definition:
parse.h:60
tREGEXP_END
Definition:
parse.h:105
keyword_def
Definition:
parse.h:43
tRSHFT
Definition:
parse.h:124
keyword_yield
Definition:
parse.h:69
keyword_then
Definition:
parse.h:51
tDOT3
Definition:
parse.h:120
keyword_when
Definition:
parse.h:55
tPOW
Definition:
parse.h:108
tANDOP
Definition:
parse.h:115
tSYMBOLS_BEG
Definition:
parse.h:146
YYSTYPE::vars
const struct vtable * vars
Definition:
parse.h:172
tLABEL
Definition:
parse.h:96
keyword_self
Definition:
parse.h:71
tCVAR
Definition:
parse.h:95
keyword__ENCODING__
Definition:
parse.h:89
tASSOC
Definition:
parse.h:129
tLOWEST
Definition:
parse.h:154
tOP_ASGN
Definition:
parse.h:128
tUMINUS
Definition:
parse.h:107
tCMP
Definition:
parse.h:109
tCHAR
Definition:
parse.h:102
modifier_if
Definition:
parse.h:78
keyword_not
Definition:
parse.h:77
tRPAREN
Definition:
parse.h:132
tLABEL_END
Definition:
parse.h:153
keyword_defined
Definition:
parse.h:84
modifier_until
Definition:
parse.h:81
tFLOAT
Definition:
parse.h:98
tLBRACE
Definition:
parse.h:134
keyword_true
Definition:
parse.h:73
tNEQ
Definition:
parse.h:112
keyword_redo
Definition:
parse.h:61
vtable
Definition:
ripper.c:190
tSTRING_CONTENT
Definition:
parse.h:101
tSTAR
Definition:
parse.h:136
keyword__FILE__
Definition:
parse.h:88
tQSYMBOLS_BEG
Definition:
parse.h:147
keyword_nil
Definition:
parse.h:72
keyword_super
Definition:
parse.h:70
modifier_rescue
Definition:
parse.h:82
tSTRING_DVAR
Definition:
parse.h:150
keyword_end
Definition:
parse.h:48
keyword_do_block
Definition:
parse.h:66
tDSTAR
Definition:
parse.h:137
tINTEGER
Definition:
parse.h:97
Generated by
1.8.13