-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
List position based formatting #13574
Conversation
@@ -1116,6 +1128,10 @@ namespace ts.formatting { | |||
if ((<TypeReferenceNode>node).typeArguments === list) { | |||
return SyntaxKind.LessThanToken; | |||
} | |||
case SyntaxKind.TypeLiteral: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this an intended fallthrough?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, fixed now.
@@ -31,7 +31,7 @@ namespace ts.formatting { | |||
* the first token in line so it should be indented | |||
*/ | |||
interface DynamicIndentation { | |||
getIndentationForToken(tokenLine: number, tokenKind: SyntaxKind, container: Node): number; | |||
getIndentationForToken(tokenLine: number, tokenKind: SyntaxKind, container: Node, suppressDelta: boolean): number; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you add a comment for the "suppressDelta" parameter, including examples of when would that be set to true? So it would be easier to read
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I added now 👍
consumeTokenAndAdvanceScanner(tokenInfo, parent, parentDynamicIndentation, parent); | ||
|
||
if (indentationOnLastIndentedLine !== Constants.Unknown) { | ||
indentationOnListStartToken = indentationOnLastIndentedLine; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you add a comment here explaining the relationship between indentationOnLastIndentedLine
and indentationOnListStartToken
? It looks like they are related somehow
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also added 👍
Test fails on codeFixClassImplementInterfaceComputedPropertyNameWellKnownSymbols because of a strange NodeArray object with the form |
BTW I think the fix for codeFixClassImplementInterfaceComputedPropertyNameWellKnownSymbols is out of scope of this PR, a simple workaround may be enough? |
... and add explicit delta suppressor for list end tokens
Rebased and squashed for easier review. Sorry for previous mess 😅 |
What is the status of this PR? |
I think it's mature enough, time to merge conflicts anyway... |
Thanks for your contribution. This PR has not been updated in a while and cannot be automatically merged at the time being. For housekeeping purposes we are closing stale PRs. If you'd still like to continue working on this PR, please leave a message and one of the maintainers can reopen it. |
@Andy-MS can you refresh this PR |
Note for myself: downgrade to TS 2.4.x, gulp-typescript 3.0.x, and mocha 3.5.x to build this. |
Solved by #18284 |
Fixes #5830, fixes #5890, fixes #6252, fixes #6320, fixes #6451, fixes #10681, fixes #13688, and maybe more.
Previous behavior:
New behavior: