progress
This commit is contained in:
parent
16e76d6b31
commit
484dbfc9d9
529 changed files with 113694 additions and 0 deletions
19
AspClassic.VBScript/Runtime/ITrace.cs
Normal file
19
AspClassic.VBScript/Runtime/ITrace.cs
Normal file
|
@ -0,0 +1,19 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
#if USE35
|
||||
using AspClassic.Scripting.Ast;
|
||||
#else
|
||||
using System.Linq.Expressions;
|
||||
#endif
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
namespace Dlrsoft.VBScript.Runtime
|
||||
{
|
||||
public interface ITrace
|
||||
{
|
||||
//void TraceDebugInfo(SymbolDocumentInfo docInfo, int startLine, int startColumn, int endLine, int endColumn);
|
||||
void TraceDebugInfo(string source, int startLine, int startColumn, int endLine, int endColumn);
|
||||
//void RegisterRuntimeVariables(string[] varNames, IRuntimeVariables runtimeVariables);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue