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
如题,Expression.getVariableFullNames()在以下场景会返回不太正确的结果: 示例脚本: Expression expr = instance.compile("let abc = new String('abc');", true); System.out.println(expr.getVariableFullNames());
返回结果: [String]
The text was updated successfully, but these errors were encountered:
fix: returns wrong variable names when expression contains new statem…
47a33d3
…ent, #476
Fixed in 5.3.2 https://github.com/killme2008/aviatorscript/releases/tag/aviator-5.3.2
Sorry, something went wrong.
No branches or pull requests
如题,Expression.getVariableFullNames()在以下场景会返回不太正确的结果:
示例脚本:
Expression expr = instance.compile("let abc = new String('abc');", true);
System.out.println(expr.getVariableFullNames());
返回结果:
[String]
The text was updated successfully, but these errors were encountered: