(k, v)
| 132 | // information for us to identify that it is an arrow function that takes only |
| 133 | // two arguments. |
| 134 | let arrow = (k, v) => lengthReviver(k, v); |
| 135 | for (var i = 0; i < 3; i++) { |
| 136 | assertEquals('{"a":"undefined"}', stringify(parse('{"a":103}', arrow))); |
| 137 | assertEquals( |
nothing calls this directly
no test coverage detected