(request: Request, text: string)
| 2952 | } |
| 2953 | |
| 2954 | function serializeLargeTextString(request: Request, text: string): string { |
| 2955 | request.pendingChunks++; |
| 2956 | const textId = request.nextChunkId++; |
| 2957 | emitTextChunk(request, textId, text, false); |
| 2958 | return serializeByValueID(textId); |
| 2959 | } |
| 2960 | |
| 2961 | function serializeDebugLargeTextString(request: Request, text: string): string { |
| 2962 | request.pendingDebugChunks++; |
no test coverage detected