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

52 lines
539 B
Plaintext
Raw Normal View History

exports[`test object.js 1`] = `
"state = {
// students
hoverColumn: -1
};
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
state = {
// students
hoverColumn: -1
};
"
`;
2017-01-23 02:21:25 +03:00
exports[`test series.js 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;
1 - --x;
1 - x--;
-(--x);
-x--;
x-- - 1;
--x - 1;
"
`;