UNPKG

monaco-editor-core

Version:
29 lines 1.27 kB
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import { StopWatch } from '../../../../base/common/stopwatch.js'; import { EditorAction, registerEditorAction } from '../../../browser/editorExtensions.js'; import * as nls from '../../../../nls.js'; class ForceRetokenizeAction extends EditorAction { constructor() { super({ id: 'editor.action.forceRetokenize', label: nls.localize2(1532, "Developer: Force Retokenize"), precondition: undefined }); } run(accessor, editor) { if (!editor.hasModel()) { return; } const model = editor.getModel(); model.tokenization.resetTokenization(); const sw = new StopWatch(); model.tokenization.forceTokenization(model.getLineCount()); sw.stop(); console.log(`tokenization took ${sw.elapsed()}`); } } registerEditorAction(ForceRetokenizeAction); //# sourceMappingURL=tokenization.js.map