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

📄 parser.h

📁 PL/0源码
💻 H
字号:
//////////////////////////////////////////////////////////////////////////////////    parser.[h,cc] -- table-driver LL(1) parser////    Parsing and error correction tables are created by the program//    makeparse.  The parsing tables are linked into the compiler in from the//    file parsetab.cc.////    The parser is a heavily-modified version of code originally written//    by Jon Mauney.//    (copyright 1980 University of Wisconsin, all rights reserved)//    Used by permission.//#ifndef PARSER_H#define PARSER_Hint init_parser(void);//  Returns how many tokens the parser thinks there are, for sanity checkvoid parse(void);//  This is the where the action is (we're a syntax-directed compiler!)#endif

⌨️ 快捷键说明

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