在 javascript 上下文中查看异步模块定义 (AMD) 后,我想知道如何在 Visual Studio 2010 中为依赖模块获取智能感知。
例如给定模块A:
define(function() {
return {
square: function(value) {
return value * value;
}
};
});
和相应的模块 B:
define(["A"], function(a) {
return {
value: a.square(10)
}
});
然后我想对模块 B 中的模块 A(表示为参数 a)进行完整的智能感知。请注意,这两个模块都将在单独的文件中定义(在本例中为 A.js 和 B.js)。