jsfmt.spec.js.snap 338 B

123456789101112131415
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`update_expression.js 1`] = `
  3. (this.x++).toString()
  4. new (r++);
  5. (x++)();
  6. const uuid = String(this._uuidCounter++);
  7. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  8. (this.x++).toString();
  9. new (r++)();
  10. (x++)();
  11. const uuid = String(this._uuidCounter++);
  12. `;