* Transform for F#-style await Inludes support for optimizing single-parameter arrow functions * Wait until optimization before pushing placeholder into scope
6 lines
66 B
JavaScript
6 lines
66 B
JavaScript
var _;
|
|
|
|
var inc = x => x + 1;
|
|
|
|
expect((_ = 10, inc(_))).toBe(11);
|