FIXED WEB-23872 JavaScript Indentation Problem with "var" over multiple lines

This commit is contained in:
Rustam Vishnyakov
2016-10-25 15:01:03 +03:00
parent 8994ce1285
commit c5accce16a
@@ -195,9 +195,11 @@ public abstract class JavaLikeLangLineIndentProvider implements LineIndentProvid
else if (position.isAt(RightParenthesis)) {
position.beforeParentheses(LeftParenthesis, RightParenthesis);
}
else if (position.isAt(BlockClosingBrace)) {
position.beforeParentheses(BlockOpeningBrace, BlockClosingBrace);
}
else if (position.isAtAnyOf(Semicolon,
BlockOpeningBrace,
BlockClosingBrace,
BlockComment,
DocBlockEnd,
LineComment,