191 lines
4.8 KiB
C++
191 lines
4.8 KiB
C++
#ifndef _COOL_PARSE_H
|
|
#define _COOL_PARSE_H
|
|
//
|
|
// See copyright.h for copyright notice and limitation of liability
|
|
// and disclaimer of warranty provisions.
|
|
//
|
|
#include "copyright.h"
|
|
|
|
#ifndef _COOL_H_
|
|
#define _COOL_H_
|
|
|
|
#include "cool-io.h"
|
|
|
|
/* a type renaming */
|
|
typedef int Boolean;
|
|
class Entry;
|
|
typedef Entry *Symbol;
|
|
|
|
Boolean copy_Boolean(Boolean);
|
|
void assert_Boolean(Boolean);
|
|
void dump_Boolean(ostream &,int,Boolean);
|
|
|
|
Symbol copy_Symbol(Symbol);
|
|
void assert_Symbol(Symbol);
|
|
void dump_Symbol(ostream &,int,Symbol);
|
|
|
|
#endif
|
|
#include "tree.h"
|
|
typedef class Program_class *Program;
|
|
typedef class Class__class *Class_;
|
|
typedef class Feature_class *Feature;
|
|
typedef class Formal_class *Formal;
|
|
typedef class Expression_class *Expression;
|
|
typedef class Case_class *Case;
|
|
typedef list_node<Class_> Classes_class;
|
|
typedef Classes_class *Classes;
|
|
typedef list_node<Feature> Features_class;
|
|
typedef Features_class *Features;
|
|
typedef list_node<Formal> Formals_class;
|
|
typedef Formals_class *Formals;
|
|
typedef list_node<Expression> Expressions_class;
|
|
typedef Expressions_class *Expressions;
|
|
typedef list_node<Case> Cases_class;
|
|
typedef Cases_class *Cases;
|
|
/* A Bison parser, made by GNU Bison 2.3. */
|
|
|
|
/* Skeleton interface for Bison's Yacc-like parsers in C
|
|
|
|
Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
|
|
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 2, 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, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
Boston, MA 02110-1301, USA. */
|
|
|
|
/* 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,
|
|
LET_STMT = 285
|
|
};
|
|
#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
|
|
#define LET_STMT 285
|
|
|
|
|
|
|
|
|
|
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
|
|
typedef union YYSTYPE
|
|
#line 46 "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 1489 of yacc.c. */
|
|
#line 124 "cool.tab.h"
|
|
YYSTYPE;
|
|
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
|
|
# define YYSTYPE_IS_DECLARED 1
|
|
# define YYSTYPE_IS_TRIVIAL 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;
|
|
#endif
|