(message: string)
| 111 | } |
| 112 | |
| 113 | createErrorResponse(message: string): ToolResult { |
| 114 | return { |
| 115 | id: this.tool.id, |
| 116 | name: this.tool.name, |
| 117 | code: -1, |
| 118 | languageId: 'stderr', |
| 119 | stdout: [], |
| 120 | stderr: this.parseOutput(message), |
| 121 | }; |
| 122 | } |
| 123 | |
| 124 | // mostly copy&paste from base-compiler.js |
| 125 | findLibVersion(selectedLib: SelectedLibraryVersion, supportedLibraries: Record<string, OptionsHandlerLibrary>) { |
no test coverage detected