(currentArtifact: string, onFileContent: (filePath: string, fileContent: string) => void, onShellCommand: (shellCommand: string) => void)
| 15 | private onShellCommand: (shellCommand: string) => void; |
| 16 | |
| 17 | constructor(currentArtifact: string, onFileContent: (filePath: string, fileContent: string) => void, onShellCommand: (shellCommand: string) => void) { |
| 18 | this.currentArtifact = currentArtifact; |
| 19 | this.onFileContent = onFileContent; |
| 20 | this.onShellCommand = onShellCommand; |
| 21 | } |
| 22 | |
| 23 | append(artifact: string) { |
| 24 | this.currentArtifact += artifact; |
nothing calls this directly
no outgoing calls
no test coverage detected