/*
Copyright (C) 2014-2019 de4dot@gmail.com
This file is part of dnSpy
dnSpy is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
dnSpy is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with dnSpy. If not, see .
*/
using System;
using VST = Microsoft.VisualStudio.Text;
namespace dnSpy.Contracts.Hex.Classification {
///
/// Hex classification context
///
public readonly struct HexClassificationContext {
///
/// true if this is a default instance that hasn't been initialized
///
public bool IsDefault => Line is null;
///
/// Gets the buffer line
///
public HexBufferLine Line { get; }
///
/// Line span to classify
///
public VST.Span LineSpan { get; }
///
/// Constructor
///
/// Line info
/// Line span to classify
public HexClassificationContext(HexBufferLine line, VST.Span lineSpan) {
if (line is null)
throw new ArgumentNullException(nameof(line));
if (!line.TextSpan.Contains(lineSpan))
throw new ArgumentOutOfRangeException(nameof(lineSpan));
Line = line;
LineSpan = lineSpan;
}
}
}