代码折叠问题eclipse
Posted
技术标签:
【中文标题】代码折叠问题eclipse【英文标题】:Code folding issue eclipse 【发布时间】:2013-03-19 21:40:06 【问题描述】:我在 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 语句开始折叠的选项,并且它在帧率计算函数中一直折叠。这显然不是要折叠的有效代码块。关于问题可能是什么的任何想法?
【问题讨论】:
这是 Eclipse 的 JavaScript 编辑器中的一个错误。你的代码没有错。 【参考方案1】:尝试将this.method = function()
中的函数命名为this.method = function method()
之类的名称
【讨论】:
以上是关于代码折叠问题eclipse的主要内容,如果未能解决你的问题,请参考以下文章