()
| 53 | } |
| 54 | |
| 55 | function viewFileWrapperStep() { |
| 56 | const wrapper = Buffer.concat([ |
| 57 | writeStringField(2, 'file:///home/user/projects/workspace-abc123/README.md'), |
| 58 | writeMessageField(3, writeStringField(1, 'nested request')), |
| 59 | writeStringField(4, 'observed content'), |
| 60 | ]); |
| 61 | return Buffer.concat([ |
| 62 | writeVarintField(1, 14), |
| 63 | writeVarintField(4, 3), |
| 64 | writeMessageField(19, wrapper), |
| 65 | ]); |
| 66 | } |
| 67 | |
| 68 | function errorStep(message) { |
| 69 | const details = writeStringField(1, message); |
no test coverage detected