123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- // Jest Snapshot v1, https://goo.gl/fbAQLP
- exports[`object.js 1`] = `
- state = {
- // students
- hoverColumn: -1
- };
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- state = {
- // students
- hoverColumn: -1
- };
- `;
- exports[`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;
- `;
|