www.pudn.com > subpas.rar > analyze.h


/****************************************************/ 
/* File: analyze.h                                  */ 
/* Semantic analyzer interface						*/ 
/* for the SubPas compiler                          */ 
/****************************************************/ 
 
#ifndef _ANALYZE_H_ 
#define _ANALYZE_H_ 
 
/* 进行错误检查,主要是类型检查,数组下标检查,标识符是否已声明等 
 */ 
void errorCheck(TreeNode *); 
 
#endif