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

54 lines
597 B
Plaintext
Raw Normal View History

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`object.js - flow-verify 1`] = `
state = {
// students
hoverColumn: -1
};
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
state = {
// students
hoverColumn: -1
};
`;
exports[`series.js - flow-verify 1`] = `
1 + ++x;
2017-01-23 02:21:25 +03:00
1 + x++;
+ ++x;
+ x++;
x++ + 1;
++x + 1;
1 - --x;
1 - x--;
- --x;
- x--;
x-- - 1;
--x - 1;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1 + ++x;
1 + x++;
+(++x);
+x++;
x++ + 1;
++x + 1;
1 - --x;
1 - x--;
-(--x);
-x--;
x-- - 1;
--x - 1;
2017-01-23 02:21:25 +03:00
`;