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

Method dapLogFile

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

Source from the content-addressed store, hash-verified

76 get customDevTools(): undefined | CustomDevToolsConfig { return this.getConfig<null | CustomDevToolsConfig>("customDevTools", null); }
77 get customFlutterDapPath(): undefined | string { return resolvePaths(this.getConfig<null | string>("customFlutterDapPath", null)); }
78 get dapLogFile(): undefined | string { return createFolderForFile(insertWorkspaceName(resolvePaths(this.getConfig<null | string>("dapLogFile", null)))); }
79 get daemonPort(): undefined | number { return this.getConfig<null | number>("daemonPort", null); }
80 get debugExtensionBackendProtocol(): "sse" | "ws" { return this.getConfig<"sse" | "ws">("debugExtensionBackendProtocol", "ws"); }
81 get debugExternalPackageLibraries(): boolean { return this.getConfig<boolean>("debugExternalPackageLibraries", 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