12 lines
224 B
C#
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);
|
|
}
|
|
}
|