UNPKG

monaco-editor

Version:
20 lines (17 loc) 850 B
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 };