Skip to content

fluent api style method chain formatting problem #5830

Closed
@zpdDG4gta8XKpMCd

Description

@zpdDG4gta8XKpMCd

Seen in 1.8 nightly build (1.8.0-dev.20151130)

// given:
new Start()
   .then(
      true,
      false
   ).then(
      1234,
      'xyz'
   ).then(
      'abc',
      '987'
   );
// actual:
new Start()
   .then(
   true,
   false
   ).then(
   1234,
   'xyz'
   ).then(
   'abc',
   '987'
   );
// expected:
new Start()
   .then(
      true,
      false
   ).then(
      1234,
      'xyz'
   ).then(
      'abc',
      '987'
   );

Metadata

Metadata

Assignees

No one assigned

    Labels

    BugA bug in TypeScriptDomain: FormatterThe issue relates to the built-in formatterFixedA PR has been merged for this issueHelp WantedYou can do this

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions