aspclassic-core/AspClassic.VBScript/Compiler/DocSpan.cs
Jelle Luteijn 484dbfc9d9 progress
2022-05-15 11:19:49 +02:00

19 lines
392 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using AspClassic.Scripting;
namespace Dlrsoft.VBScript.Compiler
{
public class DocSpan
{
public DocSpan(string uri, SourceSpan span)
{
this.Uri = uri;
this.Span = span;
}
public string Uri { get; set; }
public SourceSpan Span { get; set; }
}
}