prettier/tests/flow/funrec/__snapshots__/jsfmt.spec.js.snap

21 lines
376 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`funrec.js 1`] = `
function bar(x) { return x; }
function foo() {
return function bound() {
return bar(bound);
};
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
function bar(x) {
return x;
}
function foo() {
return function bound() {
return bar(bound);
};
}
`;