ecma标准文档阅读问题,一个隐藏操作前面带一个问号表示什么意思?

发布于 2022-09-02 23:37:43 字数 565 浏览 13 评论 0

https://tc39.github.io/ecma262/#sec-bitwise-not-operator

    Runtime Semantics: Evaluation#
    
    UnaryExpression:~UnaryExpression
    Let expr be the result of evaluating UnaryExpression.
    Let oldValue be ? ToInt32(? GetValue(expr)).
    Return the result of applying bitwise complement to oldValue. The result is a signed 32-bit integer.
    

这里面 ? GetValue(expr) 前面为什么要带个问号?表示什么意思? ? ToInt32前面也带了。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

硬不硬你别怂 2022-09-09 23:37:43

自己找到了

https://tc39.github.io/ecma262/#sec-algorithm-conventions

    Abstract operations referenced using the functional application style and the method application style that are prefixed by ? indicate that ReturnIfAbrupt should be applied to the resulting Completion Record. For example, ? operationName() is equivalent to ReturnIfAbrupt(operationName()). Similarly, ? someValue.operationName() is equivalent to ReturnIfAbrupt(someValue.operationName()).
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文