ftp.nice.ch/pub/next/developer/languages/java/guavac.0.2.5.s.tar.gz#/guavac-0.2.5/compiler/parser_decls.h

This is parser_decls.h in view mode; [Download] [Up]

// Copyright (c) 1995  David Engberg  All rights reserved
// $Id: parser_decls.h,v 1.2 1996/01/08 03:03:38 geppetto Exp $
#ifndef _parser_decls_h
#define _parser_decls_h

#include "string.h"
#include "JavaFieldSignature.h"
#include "VariableDeclaration.h"
#include <deque>
class CJavaAccessFlags;
class CJavaTypeSignature;
class CExpression;
class CStatement;
class CCompoundStatement;
class CCompiler;
class CCatchClause;

// These are global declarations needed for the lexer and parser files.

void InitializeParser(const string& inString, CCompiler* compilerAlias);
void FinishParser();

void InitializeLexer(const string& tokenizeString);
void FinishLexer();

extern char* yytext;
extern int yylineno;
int yylex();
int yyparse();
void yyerror(const char*);

typedef deque<CExpression*> ExpressionList;
typedef deque<CStatement*> StatementList;

#endif

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.