myeclipse javascript:“跳转到”单击函数名称时的函数不起作用
这是关于 eclipse 的 myecplise 编辑器插件的问题。
让我们举一个简单的例子:
JavaScript 不太漂亮(因为命名空间很混乱)
function blubb () {//做一些事情}
blubb();
更漂亮的 javascript(因为我们将其全部包装在变量 bla 中,以免混乱命名空间)
var bla = { 布拉布:函数(){ //做事 } }
bla.blubb();
如果我按 Ctrl 键并单击示例 1 中的 blubb(),我就会进入函数声明。如果我单击示例 2 中 bla.blubb() 部分的 blubb(),我不会进入函数声明。为什么??!?我该如何修复它?
this is a question about the myecplise editor plugin for eclipse.
let's take this simple example:
not so pretty javascript (because namespace is cluttered)
function blubb () {//do stuff}
blubb();
prettier javascript (because we wrap it all in variable bla to not clutter the namespace)
var bla = {
blubb: function () {
//do stuff
}
}bla.blubb();
if i press Ctrl and click on blubb() in example 1 i get taken to the function declaration. if i click on blubb() of the bla.blubb() part in example 2 i do NOT get taken to the function declaration. why??!? how can i fix it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论