You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The cases below with 3 and 5 spaces before the end bracket splits of the f method. I would have expected all indentations to give the same javascript (shown from Try CoffeeScript). This issue is based on an issue from a user on twitter, see: http://t.co/QnNqaC3.
### One class ###classAg:->@x= [
1
] # 2 spacesf:->### Split class ###classBg:->@x= [
1
] # 3 spacesf:->### One class ###classCg:->@x= [
1
] # 4 spacesf:->### Split class ###classDg:->@x= [
1
] # 5 spacesf:->### One class ###classEg:->@x= [
1
] # 6 spacesf:->
/* One class */varA,B,C,D,E;A=(function(){functionA(){}A.prototype.g=function(){returnthis.x=[1];};A.prototype.f=function(){};returnA;})();/* Split class */B=(function(){functionB(){}B.prototype.g=function(){returnthis.x=[1];};returnB;})();({f: function(){}/* One class */});C=(function(){functionC(){}C.prototype.g=function(){returnthis.x=[1];};C.prototype.f=function(){};returnC;})();/* Split class */D=(function(){functionD(){}D.prototype.g=function(){returnthis.x=[1];};returnD;})();({f: function(){}/* One class */});E=(function(){functionE(){}E.prototype.g=function(){returnthis.x=[1];};E.prototype.f=function(){};returnE;})();
The text was updated successfully, but these errors were encountered:
The cases below with 3 and 5 spaces before the end bracket splits of the f method. I would have expected all indentations to give the same javascript (shown from Try CoffeeScript). This issue is based on an issue from a user on twitter, see: http://t.co/QnNqaC3.
The text was updated successfully, but these errors were encountered: