jsfmt.spec.js.snap 386 B

123456789101112131415161718192021222324
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`comment.js 1`] = `
  3. {
  4. inf_leave: // goto emulation
  5. for (;;) {}
  6. }
  7. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  8. {
  9. // goto emulation
  10. inf_leave: for (;;) {}
  11. }
  12. `;
  13. exports[`empty_label.js 1`] = `
  14. a:;
  15. b
  16. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  17. a:;
  18. b;
  19. `;