* Transform for F#-style await Inludes support for optimizing single-parameter arrow functions * Wait until optimization before pushing placeholder into scope
9 lines
104 B
JavaScript
9 lines
104 B
JavaScript
var a = 1,
|
|
b = 2,
|
|
c = 3;
|
|
var result = a
|
|
|> (() => b)
|
|
|> (() => c);
|
|
|
|
expect(result).toBe(c);
|