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

23 lines
296 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`urnary_expression.js 1`] = `
!!x
x++
x--;
-+1;
x + + + + 1;
x + (+ (+ (+ 1)))
x * +y;
+x * y;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
!!x;
x++;
x--;
-+1;
x + +(+(+1));
x + +(+(+1));
x * +y;
+x * y;
`;