()
| 282 | get analysisExcludedFolders(): string[] { return this.getConfig<string[]>("analysisExcludedFolders", []); } |
| 283 | get analyzerInstrumentationLogFile(): undefined | string { return createFolderForFile(insertWorkspaceName(resolvePaths(this.getConfig<null | string>("analyzerInstrumentationLogFile", null)))); } |
| 284 | get analyzerLogFile(): undefined | string { return createFolderForFile(insertWorkspaceName(resolvePaths(this.getConfig<null | string>("analyzerLogFile", null)))); } |
| 285 | get analyzerPath(): undefined | string { return resolvePaths(this.getConfig<null | string>("analyzerPath", null)); } |
| 286 | get cliAdditionalArgs(): string[] { return this.getConfig<string[]>("cliAdditionalArgs", []); } |
| 287 | get completeFunctionCalls(): boolean { return this.getConfig<boolean>("completeFunctionCalls", true); } |
nothing calls this directly
no test coverage detected