monaco-editor
Version:
A browser based code editor
20 lines (17 loc) • 850 B
JavaScript
import { onUnexpectedError } from '../errors.js';
import '../arrays.js';
import '../event.js';
import '../lifecycle.js';
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
/**
* This function is used to indicate that the caller recovered from an error that indicates a bug.
*/
function handleBugIndicatingErrorRecovery(message) {
const err = new Error('BugIndicatingErrorRecovery: ' + message);
onUnexpectedError(err);
console.error('recovered from an error that indicates a bug', err);
}
export { handleBugIndicatingErrorRecovery };