我有一个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语句开始折叠的选项,并且它一直在帧速率计算函数中折叠。这显然不是要崩溃的有效代码块。关于问题可能是什么想法?
答案 0 :(得分:0)
尝试将this.method = function() {
中的函数命名为this.method = function method() {