(line: string, cursor: number)
| 440 | } |
| 441 | |
| 442 | function readBareReplayToken(line: string, cursor: number): { value: string; nextCursor: number } { |
| 443 | let end = cursor; |
| 444 | while (end < line.length && !/\s/.test(line.charAt(end))) { |
| 445 | end += 1; |
| 446 | } |
| 447 | return { value: line.slice(cursor, end), nextCursor: end }; |
| 448 | } |
| 449 | |
| 450 | export function writeReplayScript( |
| 451 | filePath: string, |
no outgoing calls
no test coverage detected