📄 assign.cpp
字号:
//赋值语句分析 :=
#include "Parser.h"
int Sen_Assign()
{
int RTN_ADDR = 0;
if(curr_code == 27)
{
GetNextSymble();
if(curr_code == 41) //是否为:=
{
RTN_ADDR = Expression_Analysis();
}
else
{
Error(ASSIGN_ERROR);
}
}
else
{
Error(ASSIGN_ERROR);
}
return RTN_ADDR;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -