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
问题1. 当类型为ValueType,且拥有多个构造函数时,导出的无参数构造函数存在BUG
LuaCodeGen第1989行
Write(file, "{0}(argc=={1}){{", first ? "if" : "else if", 0);
应当改为
Write(file, "{0}(argc=={1}){{", first ? "if" : "else if", 1);
问题2. 当类型为ValueType,且拥有一个有参数构造函数时,不会自动导出无参数构造函数
The text was updated successfully, but these errors were encountered:
No branches or pull requests
问题1.
当类型为ValueType,且拥有多个构造函数时,导出的无参数构造函数存在BUG
LuaCodeGen第1989行
应当改为
问题2.
当类型为ValueType,且拥有一个有参数构造函数时,不会自动导出无参数构造函数
The text was updated successfully, but these errors were encountered: