blob: 60254ed98857f04f46429d975c0c3715d948a92a [file] [log] [blame]
//
// Copyright (c) 2010-2018 Antmicro
//
// This file is licensed under the MIT License.
// Full license text is available in 'licenses/MIT.txt'.
//
using System;
using Sprache;
namespace Antmicro.Renode.PlatformDescription.Syntax
{
public interface IWithPosition
{
Position StartPosition { get; }
int Length { get; }
}
}