(resultRef)
| 308 | |
| 309 | // The response envelope is a record pairing a `result` union with the request `id`. |
| 310 | const envelope = (resultRef) => group('x.CommandResponse', [field('id', ['uint']), field('result', [ref(resultRef)])]) |
| 311 | |
| 312 | it('marks an undispatchable result-grouping union (reached via `result`) as correlated', () => { |
| 313 | // CommandResponse.result -> x.ResultData, a union of result records that cannot |
no test coverage detected