我在规范中看到很多Let value be ?
,Return ? sth
。example
任何人都知道这是什么意思?
答案 0 :(得分:2)
使用功能应用程序样式引用的抽象操作 以
?
为前缀的方法应用程序样式表示 ReturnIfAbrupt应该应用于结果 Completion Record例如,? operationName()相当于 ReturnIfAbrupt(operationName())。
同样,? someValue .operationName()相当于ReturnIfAbrupt( someValue .operationName())。