mirror of
https://github.com/Stone-Red-Code/YesNt-Interpreter.git
synced 2026-09-04 09:06:41 +02:00
13 lines
380 B
C#
13 lines
380 B
C#
using System;
|
|
|
|
namespace YesNt.Interpreter.Runtime
|
|
{
|
|
public class DebugEventArgs : EventArgs
|
|
{
|
|
public int LineNumber { get; internal set; }
|
|
public string CurrentLine { get; internal set; }
|
|
public string OriginalLine { get; internal set; }
|
|
public int TaskId { get; internal set; }
|
|
public bool IsTask { get; internal set; }
|
|
}
|
|
} |