prettier/tests/label/__snapshots__/jsfmt.spec.js.snap

25 lines
389 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`comment.js 1`] = `
{
inf_leave: // goto emulation
for (;;) {}
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
{
// goto emulation
inf_leave: for (;;) {
}
}
`;
exports[`empty_label.js 1`] = `
a:;
b
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
a:;
b;
`;