代码折叠问题eclipse

时间:2013-03-29 07:11:21

标签: javascript eclipse collapse folding

我有一个Eclipse折叠javascript代码不正确的问题,我不知道问题是什么。我正在构建一个游戏引擎,所以我有一个特定的对象构造函数,后跟一个计算帧率的函数:

function Constructor() {
    //A whole bunch of code for this constructor

    this.method = function() {
        //A bunch of method code
        this.context.font = "blahblah";
    };
}

function calculateFrameRate(times) {
    //All the code for calculating framerate
}

无论出于何种原因,它为我提供了从context.font语句开始折叠的选项,并且它一直在帧速率计算函数中折叠。这显然不是要崩溃的有效代码块。关于问题可能是什么想法?

1 个答案:

答案 0 :(得分:0)

尝试将this.method = function() {中的函数命名为this.method = function method() {