(error: any, dirPath: string)
| 2776 | } |
| 2777 | |
| 2778 | handleUserError(error: any, dirPath: string): CompilationResult { |
| 2779 | return { |
| 2780 | dirPath, |
| 2781 | okToCache: false, |
| 2782 | code: -1, |
| 2783 | timedOut: false, |
| 2784 | asm: [{text: `<${error.message}>`}], |
| 2785 | stdout: [], |
| 2786 | stderr: [{text: `<${error.message}>`}], |
| 2787 | }; |
| 2788 | } |
| 2789 | |
| 2790 | handleUserBuildError(error: any, dirPath: string): BuildResult { |
| 2791 | return { |
no outgoing calls
no test coverage detected