📄 global.h
字号:
#ifndef GLOBAL_H_
#define GLOBAL_H_
#include <fstream>
#include <string>
#include "symtable.h"
#include "typedef.h"
using namespace std;
ifstream fsource;
ofstream ftoken;
ofstream fsyntax;
ofstream fsymbol;
ofstream fcode;
string TokenString;
string FuncName;
TokenType token;
TreeNode VirtualNode;
int peeking=0;
int lineno=1;
int location=0;
int Error=0;
int globalAlloc=0;
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -