(data: string)
| 517 | } |
| 518 | }, |
| 519 | writeStdin(data: string): void { |
| 520 | if (child.stdin && !child.stdin.destroyed) { |
| 521 | deps.onDebug( |
| 522 | `[bridge:ws] sessionId=${opts.sessionId} >>> ${debugTruncate(data)}`, |
| 523 | ) |
| 524 | child.stdin.write(data) |
| 525 | } |
| 526 | }, |
| 527 | updateAccessToken(token: string): void { |
| 528 | handle.accessToken = token |
| 529 | // Send the fresh token to the child process via stdin. The child's |
nothing calls this directly
no test coverage detected