MCPcopy Create free account
hub / github.com/Dart-Code/Dart-Code / toolingDaemonLogFile

Method toolingDaemonLogFile

src/extension/config.ts:202–202  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

200 get showTodos(): boolean | string[] { return this.getConfig<boolean | string[]>("showTodos", true); }
201 get testInvocationMode(): "name" | "line" { return this.getConfig<"name" | "line">("testInvocationMode", "name"); }
202 get toolingDaemonLogFile(): undefined | string { return createFolderForFile(insertWorkspaceName(resolvePaths(this.getConfig<null | string>("toolingDaemonLogFile", null)))); }
203 get toolingDaemonAdditionalArgs(): string[] { return this.getConfig<string[]>("toolingDaemonAdditionalArgs", []); }
204 get updateImportsOnRename(): boolean { return this.getConfig<boolean>("updateImportsOnRename", true); }
205 get useFlutterDev(): boolean { return this.getConfig<boolean>("useFlutterDev", false); }

Callers

nothing calls this directly

Calls 4

getConfigMethod · 0.95
createFolderForFileFunction · 0.90
insertWorkspaceNameFunction · 0.90
resolvePathsFunction · 0.90

Tested by

no test coverage detected