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
es5.js 第63行是否有问题呢? 个人感觉 key.type === 'Identifier'的情况 可能是: let a = 'key1' let b = { [a]: '123' }
这里b中 [a]的key.type就是Identifier 所以key取值应该 也得从scope中获取
The text was updated successfully, but these errors were encountered:
是的,这里对于 scope 的控制,以及对于变量的取值范围并没有做好,还有很大的优化空间……
Sorry, something went wrong.
jrainlau
No branches or pull requests
es5.js 第63行是否有问题呢?
个人感觉 key.type === 'Identifier'的情况 可能是:
let a = 'key1'
let b = {
[a]: '123'
}
这里b中 [a]的key.type就是Identifier 所以key取值应该 也得从scope中获取
The text was updated successfully, but these errors were encountered: