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

Method lastSeenVersion

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

Source from the content-addressed store, hash-verified

42 get hasNotifiedAboutProfileModeDefaultConfiguration(): boolean { return !!this.context.globalState.get("hasNotifiedAboutProfileModeDefaultConfiguration"); }
43 set hasNotifiedAboutProfileModeDefaultConfiguration(value: boolean) { void this.context.globalState.update("hasNotifiedAboutProfileModeDefaultConfiguration", value); }
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); }

Callers

nothing calls this directly

Calls 2

getMethod · 0.45
updateMethod · 0.45

Tested by

no test coverage detected