-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Handles the edge case where the first argument of a Call node is nestable. For example: ``` new{T1,T2}(arg1,arg2) ``` In this case if the indent is set to the offset of the first argument after `(` and `new{T1,T2}` is nested, the indentation will be incorrect. before (aligned to after the initial position of `(`): ``` new{T1, T2}(arg1, arg2) ``` after (aligned to after new position of `(`): ``` new{T1, T2}(arg1, arg2) ```
- Loading branch information
Showing
2 changed files
with
17 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters