⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 parser.h

📁 一个面向对像语言的编译器
💻 H
字号:
/*
 * File: parser.h
 * --------------
 * Do not modify this file. It provides constants and type definitions
 * that will be used by the parser.
 */

#ifndef _H_parser
#define _H_parser
#include "decllist.h"
class Declaration;               // these need to be forward declared since
class Type;                      // used in the yylval union
 
#include "parser_tab.h"               // use include generated header to get define

extern struct yyltype yylloc;    // global defined in generated y.tab.c file
 
int yyparse(void);              // Defined in the generated y.tab.c file
void Inityyparse(void);         // Defined in parser.y

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -