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
TypeScript中的功能演示:
我有一张表,里面有部分字段是在访问时求值并缓存的。希望有种方式可以告诉调试器表里有这些字段,调试器可以点击展开按钮来当场访问这些字段。
The text was updated successfully, but these errors were encountered:
这个实现起来不复杂,困难点在于如何让调试器知道你有这些字段。js有getter,但lua只有__index
Sorry, something went wrong.
我可以元表里面放个特殊的字段,比如 __debugger_getter
__debugger_getter
有空改一下
No branches or pull requests
TypeScript中的功能演示:
我有一张表,里面有部分字段是在访问时求值并缓存的。希望有种方式可以告诉调试器表里有这些字段,调试器可以点击展开按钮来当场访问这些字段。
The text was updated successfully, but these errors were encountered: