ECMAScript 规范有一个关于模块的部分。 Link() 是 Cyclic Module Record 上的一个方法,它运行另一个名为 InnerModuleLinking 的方法,该方法将当前模块(即 Cyclic Module Record)传递给 InnerModuleLinking。
在InnerModuleLinking中,该算法的第一步是这样的:
1. If module is not a Cyclic Module Record, then
a. Perform ? module.Link().
b. Return index.
传递除循环模块记录以外的内容是什么情况?