MCPcopy Index your code
hub / github.com/Acode-Foundation/Acode / warnRecoverable

Function warnRecoverable

src/lib/editorManager.js:124–130  ·  view source on GitHub ↗
(message, error, key)

Source from the content-addressed store, hash-verified

122 const recoverableWarningKeys = new Set();
123
124 function warnRecoverable(message, error, key) {
125 if (key) {
126 if (recoverableWarningKeys.has(key)) return;
127 recoverableWarningKeys.add(key);
128 }
129 console.warn(message, error);
130 }
131
132 function isCoarsePointerDevice() {
133 if (typeof window !== "undefined") {

Callers 8

getFileLanguageIdFunction · 0.85
applyFileToEditorFunction · 0.85
EditorManagerFunction · 0.85
getDocSyncListenerFunction · 0.85
fileHasProblemsFunction · 0.85
switchFileFunction · 0.85

Calls 1

addMethod · 0.80

Tested by

no test coverage detected