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

Method devToolsNotificationDoNotShow

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

Source from the content-addressed store, hash-verified

24 get devToolsNotificationLastShown(): number | undefined { return this.context.globalState.get<number>("devToolsNotificationLastShown"); }
25 set devToolsNotificationLastShown(value: number | undefined) { void this.context.globalState.update("devToolsNotificationLastShown", value); }
26 get devToolsNotificationDoNotShow(): boolean | undefined { return !!this.context.globalState.get("devToolsNotificationDoNotShowAgain"); }
27 set devToolsNotificationDoNotShow(value: boolean | undefined) { void this.context.globalState.update("devToolsNotificationDoNotShowAgain", value); }
28 get breakpointInNonDebuggableFileDoNotShowAgain(): boolean | undefined { return !!this.context.globalState.get("breakpointInNonDebuggableFileDoNotShowAgain"); }
29 set breakpointInNonDebuggableFileDoNotShowAgain(value: boolean | undefined) { void this.context.globalState.update("breakpointInNonDebuggableFileDoNotShowAgain", value); }

Callers

nothing calls this directly

Calls 2

getMethod · 0.45
updateMethod · 0.45

Tested by

no test coverage detected