2013-03-29 172 views
4

我遇到了一個Eclipse摺疊JavaScript代碼不正確的問題,我不知道是什麼問題。我在建立一個遊戲引擎的過程,所以我有一個特定的對象的構造函數,然後函數計算幀率:代碼摺疊問題eclipse

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聲明,並通過幀率計算函數一路崩潰。這顯然不是有效的代碼塊崩潰。關於問題可能是什麼的任何想法?

+0

這是Eclipse的JavaScript編輯器中的錯誤。你的代碼沒有錯。 – techfoobar

回答

0

嘗試this.method = function() {命名的功能是類似this.method = function method() {