-
Notifications
You must be signed in to change notification settings - Fork 13k
Closed
Labels
BugA bug in TypeScriptA bug in TypeScriptDomain: FormatterThe issue relates to the built-in formatterThe issue relates to the built-in formatterFixedA PR has been merged for this issueA PR has been merged for this issueHelp WantedYou can do thisYou can do this
Milestone
Description
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'
);
aluanhaddad
Metadata
Metadata
Assignees
Labels
BugA bug in TypeScriptA bug in TypeScriptDomain: FormatterThe issue relates to the built-in formatterThe issue relates to the built-in formatterFixedA PR has been merged for this issueA PR has been merged for this issueHelp WantedYou can do thisYou can do this