Eclipse中的“折叠”不适用于对象参数(javascript文件)

时间:2015-12-15 12:11:52

标签: javascript eclipse folding

我正在使用Eclipse Luna,并且在javascript文件中,“折叠”功能对于作为paraemters传递的对象不起作用。 请考虑以下编码:

// Folding works
function test() {

}

//Folding works fine...
var blub = {
    // Folding works fine...
    test: function() {
    }
}

somecomponent.extend("bla.blub.test", {

    // Folding doesn't work
    setData : function(value) {
        this._data = value;
        return;
    },

    /*
    * Folding doesn't work...
    * 
    */
    getData : function(value) {
        return this._data;
    }
})

任何想法如何使这项工作?

0 个答案:

没有答案