Skip to content
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

Closed
wants to merge 7 commits into from
Closed

Conversation

saschanaz
Copy link
Contributor

@saschanaz saschanaz commented Jan 19, 2017

Fixes #5830, fixes #5890, fixes #6252, fixes #6320, fixes #6451, fixes #10681, fixes #13688, and maybe more.

Previous behavior:

foo.then
  <
  void // list does not add indentation
  >();

foo
  .then(
  () => {}
  );

function foo(
  param1: number,
  param2: number
): {
    attribute: number // incorrectly double indented
  } {
}

New behavior:

foo.then
  <
    void // every list adds indentation
  >();

foo
  .then( // list starts on single-indented line
    () => {} // new formatter is list-position-sensitive, its children are now double indented
  );

function foo(
  param1: number,
  param2: number
): { // list starts on non-indented line
  attribute: number // correctly single indented
} {
}

@@ -1116,6 +1128,10 @@ namespace ts.formatting {
if ((<TypeReferenceNode>node).typeArguments === list) {
return SyntaxKind.LessThanToken;
}
case SyntaxKind.TypeLiteral:
Copy link
Member

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?

Copy link
Contributor Author

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;
Copy link
Contributor

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

Copy link
Contributor Author

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;
Copy link
Contributor

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

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also added 👍

@saschanaz
Copy link
Contributor Author

saschanaz commented May 29, 2017

Test fails on codeFixClassImplementInterfaceComputedPropertyNameWellKnownSymbols because of a strange NodeArray object with the form [ pos: undefined, end: undefined, hasTrailingComma: undefined ]. Need some bisecting to solve this.

@saschanaz
Copy link
Contributor Author

BTW I think the fix for codeFixClassImplementInterfaceComputedPropertyNameWellKnownSymbols is out of scope of this PR, a simple workaround may be enough?

saschanaz added a commit to saschanaz/TypeScript that referenced this pull request May 29, 2017
saschanaz added a commit to saschanaz/TypeScript that referenced this pull request May 29, 2017
@saschanaz
Copy link
Contributor Author

Rebased and squashed for easier review. Sorry for previous mess 😅

@magnushiie
Copy link
Contributor

What is the status of this PR?

@saschanaz
Copy link
Contributor Author

I think it's mature enough, time to merge conflicts anyway...

@typescript-bot
Copy link
Collaborator

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.

@mhegazy
Copy link
Contributor

mhegazy commented Jul 19, 2018

@Andy-MS can you refresh this PR

@mhegazy mhegazy reopened this Jul 19, 2018
@mhegazy mhegazy assigned ghost Jul 19, 2018
@saschanaz
Copy link
Contributor Author

Note for myself: downgrade to TS 2.4.x, gulp-typescript 3.0.x, and mocha 3.5.x to build this.

saschanaz added a commit to saschanaz/TypeScript that referenced this pull request Nov 3, 2018
saschanaz added a commit to saschanaz/TypeScript that referenced this pull request Nov 3, 2018
saschanaz added a commit to saschanaz/TypeScript that referenced this pull request Nov 3, 2018
saschanaz added a commit to saschanaz/TypeScript that referenced this pull request Nov 3, 2018
saschanaz added a commit to saschanaz/TypeScript that referenced this pull request Nov 3, 2018
saschanaz added a commit to saschanaz/TypeScript that referenced this pull request Nov 3, 2018
saschanaz added a commit to saschanaz/TypeScript that referenced this pull request Nov 3, 2018
saschanaz added a commit to saschanaz/TypeScript that referenced this pull request Nov 3, 2018
saschanaz added a commit to saschanaz/TypeScript that referenced this pull request Nov 3, 2018
saschanaz added a commit to saschanaz/TypeScript that referenced this pull request Nov 3, 2018
saschanaz added a commit to saschanaz/TypeScript that referenced this pull request Nov 3, 2018
saschanaz added a commit to saschanaz/TypeScript that referenced this pull request Nov 3, 2018
@saschanaz
Copy link
Contributor Author

Test fails on codeFixClassImplementInterfaceComputedPropertyNameWellKnownSymbols

Solved by #18284

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment