转到 Web Essentials 中的定义
Go to definition in web essentials
我试图理解 web essential's Go To Definition feature statement:
Go To Definition is built in to VS2012 and VS2013. This feature makes the feature work with /// <reference>
constructs
- 如果该功能内置于 VS 此功能有什么不同?
- javascript中的参考结构是什么?
根据this, VS on itself can provide intellisense for outside .js files with the help of Reference Directives
, so what is the difference?
VS Go To Definition 本身在 javascript 文件中工作,而不是跨对另一个文件的引用(据推测)。 Web Essentials 扩展了此功能。
参考构造已记录在案,例如,此处:http://msdn.microsoft.com/library/bb385682.aspx#ReferenceDirectives
This is not for providing Intellisense, since VS supports that natively. It's for hitting F12 to Go to definition on one of those comments
我试图理解 web essential's Go To Definition feature statement:
Go To Definition is built in to VS2012 and VS2013. This feature makes the feature work with
/// <reference>
constructs
- 如果该功能内置于 VS 此功能有什么不同?
- javascript中的参考结构是什么?
根据this, VS on itself can provide intellisense for outside .js files with the help of Reference Directives
, so what is the difference?
VS Go To Definition 本身在 javascript 文件中工作,而不是跨对另一个文件的引用(据推测)。 Web Essentials 扩展了此功能。
参考构造已记录在案,例如,此处:http://msdn.microsoft.com/library/bb385682.aspx#ReferenceDirectives
This is not for providing Intellisense, since VS supports that natively. It's for hitting F12 to Go to definition on one of those comments