mirror of
https://github.com/Stone-Red-Code/YesNt-Interpreter.git
synced 2026-09-09 16:06:08 +02:00
Upgrade to .NET 8 and code cleanup
This commit is contained in:
@@ -1,13 +1,12 @@
|
||||
using System;
|
||||
|
||||
namespace YesNt.Interpreter.Runtime
|
||||
namespace YesNt.Interpreter.Runtime;
|
||||
|
||||
public class DebugEventArgs : EventArgs
|
||||
{
|
||||
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; }
|
||||
}
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user