free-identifier= 之间的区别?和绑定标识符=?
试图理解 free-identifier=?和绑定标识符=?。谁能给我使用 free-identifier= 的等效代码示例?将返回 true 并使用bound-identifier=?会返回 false。
谢谢
Trying to understand free-identifier=? and bound-identifier=?. Can anyone give me equivalent code examples where using free-identifier=? would return true and using bound-identifier=? would return false.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
下面是一个例子:
由
go
引入的x
上有该扩展步骤的标记,但是compare-with 中的
没有,因此x
-xbound-identifier=?
认为它们不同。这是另一个例子:
这里
go2
还引入了一个带有标记的x
,而x
被赋予go2
作为论证没有标记。同样的故事。Here's an example:
The
x
introduced bygo
has a mark from that expansion step on it, but thex
incompare-with-x
doesn't, sobound-identifier=?
considers them different.Here's another example:
Here
go2
also introduces anx
with a mark, whereas thex
given togo2
as an argument does not have a mark. Same story.