UNPKG

monaco-editor

Version:
44 lines (41 loc) 1.34 kB
import { createDecorator } from '../../instantiation/common/instantiation.js'; /*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ const IUndoRedoService = createDecorator('undoRedoService'); class ResourceEditStackSnapshot { constructor(resource, elements) { this.resource = resource; this.elements = elements; } } class UndoRedoGroup { static { this._ID = 0; } constructor() { this.id = UndoRedoGroup._ID++; this.order = 1; } nextOrder() { if (this.id === 0) { return 0; } return this.order++; } static { this.None = new UndoRedoGroup(); } } class UndoRedoSource { static { this._ID = 0; } constructor() { this.id = UndoRedoSource._ID++; this.order = 1; } nextOrder() { if (this.id === 0) { return 0; } return this.order++; } static { this.None = new UndoRedoSource(); } } export { IUndoRedoService, ResourceEditStackSnapshot, UndoRedoGroup, UndoRedoSource };