We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
特性描述:目前,变量名是直接以原始形式被保留在编译得到的AIL代码中,这很冗长,且字符串形式的变量名并不利于后续的处理。因此,有必要将IL代码中出现的变量,全部替换为全局唯一的数字形式(变量编号),这样VM就可以使用数组之类的简单数据结构去实现闭包,也便于以后用C语言实现VM。
实现思路:在适当位置保留变量名与变量编号的映射表,也就是所谓的符号表。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
特性描述:目前,变量名是直接以原始形式被保留在编译得到的AIL代码中,这很冗长,且字符串形式的变量名并不利于后续的处理。因此,有必要将IL代码中出现的变量,全部替换为全局唯一的数字形式(变量编号),这样VM就可以使用数组之类的简单数据结构去实现闭包,也便于以后用C语言实现VM。
实现思路:在适当位置保留变量名与变量编号的映射表,也就是所谓的符号表。
The text was updated successfully, but these errors were encountered: