Community
Participate
Working Groups
Build Identifier: With this code: function someFunction(){ // Some comment bla = ''; } var a = { someMethod: function(){ } }; The editor tells me I can fold "bla = '';" and when I do it folds up until the end of the "a" object. But when I remove "someMethod" or remove the comment or move the comment to the same line as "bla" the problem disappears. It also bugs with any type of comment(Multiline and JSDoc) Reproducible: Always Steps to Reproduce: 1. Open a new javascript file 2. paste the code I gave