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

15 lines
338 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`update_expression.js 1`] = `
(this.x++).toString()
new (r++);
(x++)();
const uuid = String(this._uuidCounter++);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
(this.x++).toString();
new (r++)();
(x++)();
const uuid = String(this._uuidCounter++);
`;