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
Script1 itemV1定义在全局作用域
let itemv1 = seq.get(info.value,index); print( itemv1.name )
Expression#getVaraibleNames [info, index]
[info, index]
Script2 itemV1定义在嵌套作用域
{ let itemv1 = seq.get(info.value,index); print( itemv1.name ) }
Expression#getVaraibleNames [info, index, itemv1]
[info, index, itemv1]
对于第二种脚本,获取到的未定义变量多了itemv1
The text was updated successfully, but these errors were encountered:
这是个 bug,其实是因为引用了 item1.name 引起的,会修复下。
item1.name
Sorry, something went wrong.
(fix) issue #431
4d54b75
Merge pull request #444 from killme2008/feature/5.3.1-dev
ea20a8a
发布了 5.3.1
No branches or pull requests
Script1 itemV1定义在全局作用域
Expression#getVaraibleNames
[info, index]
Script2 itemV1定义在嵌套作用域
Expression#getVaraibleNames
[info, index, itemv1]
对于第二种脚本,获取到的未定义变量多了itemv1
The text was updated successfully, but these errors were encountered: