Details
-
Bug
-
Resolution: Done
-
P3: Somewhat important
-
Qt Creator 2.4.0
-
None
-
fcaf3d4f4c515e9c552357156d0a48b2c8359984
Description
The following snippets give very weird indentation behavior:
var foo = { "bar" : function() { } } Foo.prototype.bar = function() { } baz = function() { } var buz = new function() { this.baaaz = function() { } }
The expected behavior would be:
var foo = { "bar" : function() { } } Foo.prototype.bar = function() { } baz = function() { } var buz = new function() { this.baaaz = function() { } }