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

Method lastUsedNewProjectPath

src/shared/vscode/workspace.ts:46–46  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

44 get lastSeenVersion(): string | undefined { return this.context.globalState.get("lastSeenVersion"); }
45 set lastSeenVersion(value: string | undefined) { void this.context.globalState.update("lastSeenVersion", value); }
46 get lastUsedNewProjectPath(): string | undefined { return this.context.globalState.get("lastUsedNewProjectPath"); }
47 set lastUsedNewProjectPath(value: string | undefined) { void this.context.globalState.update("lastUsedNewProjectPath", value); }
48
49 public getPackageLastCheckedForUpdates(packageID: string): number | undefined { return this.context.globalState.get<number>(`packageLastCheckedForUpdates:${packageID}`); }

Callers

nothing calls this directly

Calls 2

getMethod · 0.45
updateMethod · 0.45

Tested by

no test coverage detected