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

12 lines
224 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using AspClassic.Scripting;
namespace Dlrsoft.VBScript.Compiler
{
public interface ISourceMapper
{
DocSpan Map(SourceSpan span);
}
}