编译原理课程设计实现源码
主函数部分内容/****************************************************/ /* File: main.c */ /* Main program for TINY compiler */ /****************************************************/ #include "globals.h" /* set NO_PARSE to TRUE to get a scanner-only compiler */ #define NO_PARSE FALSE /* set NO_ANALYZE to TRUE to get a parser-only compiler */ #define NO_ANALYZE FALSE /* set NO_CODE to TRUE to get a compiler that does not * generate code */ #define NO_CODE FALSE #include "util.h" #if NO_PARSE
用户评论