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

Method customDartDapPath

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

Source from the content-addressed store, hash-verified

286 get cliAdditionalArgs(): string[] { return this.getConfig<string[]>("cliAdditionalArgs", []); }
287 get completeFunctionCalls(): boolean { return this.getConfig<boolean>("completeFunctionCalls", true); }
288 get customDartDapPath(): undefined | string { return resolvePaths(this.getConfig<null | string>("customDartDapPath", null)); }
289 get customDevTools(): undefined | CustomDevToolsConfig { return this.getConfig<null | CustomDevToolsConfig>("customDevTools", null); }
290 get customFlutterDapPath(): undefined | string { return resolvePaths(this.getConfig<null | string>("customFlutterDapPath", null)); }
291 get daemonPort(): undefined | number { return this.getConfig<null | number>("daemonPort", null); }

Callers

nothing calls this directly

Calls 2

getConfigMethod · 0.95
resolvePathsFunction · 0.90

Tested by

no test coverage detected