149 lines
3.6 KiB
C
149 lines
3.6 KiB
C
/* A Bison parser, made by GNU Bison 2.4.3. */
|
|
|
|
/* Skeleton interface for Bison's Yacc-like parsers in C
|
|
|
|
Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
|
|
2009, 2010 Free Software Foundation, Inc.
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
/* As a special exception, you may create a larger work that contains
|
|
part or all of the Bison parser skeleton and distribute that work
|
|
under terms of your choice, so long as that work isn't itself a
|
|
parser generator using the skeleton or a modified version thereof
|
|
as a parser skeleton. Alternatively, if you modify or redistribute
|
|
the parser skeleton itself, you may (at your option) remove this
|
|
special exception, which will cause the skeleton and the resulting
|
|
Bison output files to be licensed under the GNU General Public
|
|
License without this special exception.
|
|
|
|
This special exception was added by the Free Software Foundation in
|
|
version 2.2 of Bison. */
|
|
|
|
|
|
/* Tokens. */
|
|
#ifndef YYTOKENTYPE
|
|
# define YYTOKENTYPE
|
|
/* Put the tokens into the symbol table, so that GDB and other debuggers
|
|
know about them. */
|
|
enum yytokentype {
|
|
CLASS = 258,
|
|
ELSE = 259,
|
|
FI = 260,
|
|
IF = 261,
|
|
IN = 262,
|
|
INHERITS = 263,
|
|
LET = 264,
|
|
LOOP = 265,
|
|
POOL = 266,
|
|
THEN = 267,
|
|
WHILE = 268,
|
|
CASE = 269,
|
|
ESAC = 270,
|
|
OF = 271,
|
|
DARROW = 272,
|
|
NEW = 273,
|
|
ISVOID = 274,
|
|
STR_CONST = 275,
|
|
INT_CONST = 276,
|
|
BOOL_CONST = 277,
|
|
TYPEID = 278,
|
|
OBJECTID = 279,
|
|
ASSIGN = 280,
|
|
NOT = 281,
|
|
LE = 282,
|
|
ERROR = 283
|
|
};
|
|
#endif
|
|
/* Tokens. */
|
|
#define CLASS 258
|
|
#define ELSE 259
|
|
#define FI 260
|
|
#define IF 261
|
|
#define IN 262
|
|
#define INHERITS 263
|
|
#define LET 264
|
|
#define LOOP 265
|
|
#define POOL 266
|
|
#define THEN 267
|
|
#define WHILE 268
|
|
#define CASE 269
|
|
#define ESAC 270
|
|
#define OF 271
|
|
#define DARROW 272
|
|
#define NEW 273
|
|
#define ISVOID 274
|
|
#define STR_CONST 275
|
|
#define INT_CONST 276
|
|
#define BOOL_CONST 277
|
|
#define TYPEID 278
|
|
#define OBJECTID 279
|
|
#define ASSIGN 280
|
|
#define NOT 281
|
|
#define LE 282
|
|
#define ERROR 283
|
|
|
|
|
|
|
|
|
|
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
|
|
typedef union YYSTYPE
|
|
{
|
|
|
|
/* Line 1685 of yacc.c */
|
|
#line 89 "cool.y"
|
|
|
|
Boolean boolean;
|
|
Symbol symbol;
|
|
Program program;
|
|
Class_ class_;
|
|
Classes classes;
|
|
Feature feature;
|
|
Features features;
|
|
Formal formal;
|
|
Formals formals;
|
|
Case case_;
|
|
Cases cases;
|
|
Expression expression;
|
|
Expressions expressions;
|
|
char *error_msg;
|
|
|
|
|
|
|
|
/* Line 1685 of yacc.c */
|
|
#line 126 "cool.tab.h"
|
|
} YYSTYPE;
|
|
# define YYSTYPE_IS_TRIVIAL 1
|
|
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
|
|
# define YYSTYPE_IS_DECLARED 1
|
|
#endif
|
|
|
|
extern YYSTYPE cool_yylval;
|
|
|
|
#if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLARED
|
|
typedef struct YYLTYPE
|
|
{
|
|
int first_line;
|
|
int first_column;
|
|
int last_line;
|
|
int last_column;
|
|
} YYLTYPE;
|
|
# define yyltype YYLTYPE /* obsolescent; will be withdrawn */
|
|
# define YYLTYPE_IS_DECLARED 1
|
|
# define YYLTYPE_IS_TRIVIAL 1
|
|
#endif
|
|
|
|
extern YYLTYPE cool_yylloc;
|
|
|