Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ForwardFidelityCustomTrackingSpan.cs « TextModel « Impl « Text « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4b8f0c26a1333f9de404c26cac8c513e034d9e68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//
//  Copyright (c) Microsoft Corporation. All rights reserved.
//  Licensed under the MIT License. See License.txt in the project root for license information.
//
// This file contain implementations details that are subject to change without notice.
// Use at your own risk.
//
namespace Microsoft.VisualStudio.Text.Implementation
{
    using System;

    internal sealed class ForwardFidelityCustomTrackingSpan : ForwardFidelityTrackingSpan 
    {
        object customState;
        CustomTrackToVersion behavior;

        public ForwardFidelityCustomTrackingSpan(TextVersion version, Span span, object customState, CustomTrackToVersion behavior)
            : base(version, span, SpanTrackingMode.Custom)
        {
            if (behavior == null)
            {
                throw new ArgumentNullException("behavior");
            }
            this.behavior = behavior;
            this.customState = customState;
        }

        protected override Span TrackSpanForwardInTime(Span span, ITextVersion currentVersion, ITextVersion targetVersion)
        {
            return behavior(this, currentVersion, targetVersion, span, this.customState);
        }

        protected override Span TrackSpanBackwardInTime(Span span, ITextVersion currentVersion, ITextVersion targetVersion)
        {
            return behavior(this, currentVersion, targetVersion, span, this.customState);
        }
    }
}