Closed
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'
);