Details
-
Type:
Bug
-
Status: Open
-
Priority:
Low
-
Resolution: Unresolved
-
Affects Version/s: Aptana Studio 3.2.2
-
Fix Version/s: Release 3.7.0
-
Component/s: Formatting, JS
-
Labels:None
-
Story Points:5
Description
Steps to Reproduce
Format this example code:
function test(s) { |
if (typeof (s) === "string") { |
return s; |
}
|
}
|
Actual Result
function test(s) { |
if ( typeof (s) === "string") { |
return s; |
}
|
}
|
Formatter inserts space before `typeof (s)`
Expected Result
function test(s) { |
if (typeof (s) === "string") { |
return s; |
}
|
}
|
Attachments
Issue Links
- relates to
-
APSTUD-8127 js formatter not working
-
- Open
-